From 33972f981ec6e89f4b6d0ef1ef376ae7d97933de Mon Sep 17 00:00:00 2001 From: David Woodfall Date: Wed, 12 May 2010 23:31:36 +0200 Subject: misc/figlet: Added to 12.2 repository --- misc/figlet/README | 12 +++++++ misc/figlet/figlet.SlackBuild | 78 +++++++++++++++++++++++++++++++++++++++++++ misc/figlet/figlet.info | 8 +++++ misc/figlet/slack-desc | 19 +++++++++++ 4 files changed, 117 insertions(+) create mode 100644 misc/figlet/README create mode 100644 misc/figlet/figlet.SlackBuild create mode 100644 misc/figlet/figlet.info create mode 100644 misc/figlet/slack-desc diff --git a/misc/figlet/README b/misc/figlet/README new file mode 100644 index 0000000000..f3fbe8656d --- /dev/null +++ b/misc/figlet/README @@ -0,0 +1,12 @@ +FIGlet is a program for making large letters out of ordinary text + +FIGlet prints its input using large characters (called FIGcharacters) +made up of ordinary screen characters (called sub-characters). +FIGlet output is generally reminiscent of the sort of signatures many +people like to put at the end of e-mail and UseNet messages. It is also +reminiscent of the output of some banner programs, although it is +oriented normally, not sideways. + +The homepage of FIGlet shows some examples of this. + +Homepage: http://www.figlet.org diff --git a/misc/figlet/figlet.SlackBuild b/misc/figlet/figlet.SlackBuild new file mode 100644 index 0000000000..6f12e15693 --- /dev/null +++ b/misc/figlet/figlet.SlackBuild @@ -0,0 +1,78 @@ +#!/bin/sh + +# Slackware build script for figlet + +# Written by David Woodfall dave@unrealize.co.uk +# aka dive on irc.freenode.net/#slackware + +PRGNAM=figlet +VERSION=${VERSION:-222} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +DESTDIR=$PKG/usr/bin +FONTDIR=$PKG/usr/share/figlet +MANDIR=$PKG/usr/man/man6 + +set -e # Exit on most errors + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM$VERSION +tar xvf $CWD/$PRGNAM$VERSION.tar.gz +cd $PRGNAM$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +# Sed the CFLAGs into the Makefile +if [ "$ARCH" = "i486" ]; then + sed -i 's#CFLAGS = -g#CFLAGS=-O2 -march=i486 -mtune=i686#g' Makefile +elif [ "$ARCH" = "i686" ]; then + sed -i 's#CFLAGS = -g#CFLAGS=-O2 -march=i686 -mtune=i686#g' Makefile +fi + +# Need to fix the Makefile. +sed -i 's/local\///g' Makefile +sed -i '/DEFAULTFONTDIR\ =\ fonts/d' Makefile + +make all +chmod +x figlist +mkdir -p $DESTDIR $FONTDIR $MANDIR +cp figlet chkfont figlist $DESTDIR +cp -a fonts/*.{flf,flc} $FONTDIR +cp -a figlet.6 $MANDIR + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null +) + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a CHANGES FAQ LICENSE README figfont.txt $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz + + diff --git a/misc/figlet/figlet.info b/misc/figlet/figlet.info new file mode 100644 index 0000000000..bb91d78e9c --- /dev/null +++ b/misc/figlet/figlet.info @@ -0,0 +1,8 @@ +PRGNAM="figlet" +VERSION="222" +HOMEPAGE="http://www.figlet.org" +DOWNLOAD="ftp://ftp.figlet.org/pub/figlet/program/unix/figlet222.tar.gz" +MD5SUM="5f84ad52d092d5db4ad5916df767646b" +MAINTAINER="David Woodfall" +EMAIL="dave@unrealize.co.uk" +APPROVED="michiel" diff --git a/misc/figlet/slack-desc b/misc/figlet/slack-desc new file mode 100644 index 0000000000..f4bc0cc840 --- /dev/null +++ b/misc/figlet/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +figlet: figlet (A program for making larger letters out of normal text) +figlet: +figlet: FIGlet prints its input using large characters made up of ordinary +figlet: screen characters. FIGlet output is generally reminiscent of the sort +figlet: of signatures many people like to put at the end of e-mail and Usenet +figlet: messages. +figlet: It is also reminiscent of the output of some banner programs, +figlet: although it is oriented normally, not sideways. +figlet: +figlet: Homepage: http://www.figlet.org +figlet: -- cgit v1.2.3