games/fortune_firefly: Updated for version 2.1.1

This commit is contained in:
B. Watson 2010-05-13 00:26:18 +02:00 committed by Robby Workman
parent f7cd3d2e23
commit 7858454154
3 changed files with 11 additions and 18 deletions

View file

@ -23,4 +23,3 @@ All of the quotes in this package are copyrighted by Fox Broadcasting
Corporation and Universal Pictures. Authorship of the quotes is by Tim Corporation and Universal Pictures. Authorship of the quotes is by Tim
Minear, Joss Whedon, Ben Edulund, Jane Esperson, Drew Z. Greenberg, Jose Minear, Joss Whedon, Ben Edulund, Jane Esperson, Drew Z. Greenberg, Jose
Molina, Cheryl Cain, and Brent Matthews. Molina, Cheryl Cain, and Brent Matthews.

View file

@ -4,7 +4,6 @@
# Written by B. Watson (yalhcru@gmail.com) # Written by B. Watson (yalhcru@gmail.com)
# I prefer the underscore in the Slackware package name, so # I prefer the underscore in the Slackware package name, so
# bit of tomfoolery here with SRCNAM. # bit of tomfoolery here with SRCNAM.
# Also, the $#@^#^ upstream tarball doesn't create a top-level directory... # Also, the $#@^#^ upstream tarball doesn't create a top-level directory...
@ -23,33 +22,26 @@ OUTPUT=${OUTPUT:-/tmp}
set -e set -e
rm -rf $PKG $TMP/$SRCNAM rm -rf $PKG
mkdir -p $TMP/$SRCNAM $PKG $OUTPUT mkdir -p $PKG $OUTPUT
cd $TMP/$SRCNAM
tar xvf $CWD/$SRCNAM-$VERSION.tar.bz2
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 {} \;
mkdir -p $PKG/usr/share/games/fortunes mkdir -p $PKG/usr/share/games/fortunes
cp firefly $PKG/usr/share/games/fortunes cd $PKG/usr/share/games/fortunes
tar xvf $CWD/$SRCNAM-$VERSION.tar.bz2
# The firefly.dat file in the archive doesn't work with the Slackware # The firefly.dat file in the archive doesn't work with the Slackware
# version of fortune (not sure if it's bad, or for a different fork # version of fortune (not sure if it's bad, or for a different fork
# of the fortune code, or what). So generate a valid firefly.dat. # of the fortune code, or what). So generate a valid firefly.dat.
# strfile is part of bsd-games. # strfile is part of bsd-games.
rm -f firefly.dat
( cd $PKG/usr/share/games/fortunes && strfile firefly ) strfile firefly
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp $CWD/README $PKG/usr/doc/$PRGNAM-$VERSION/README cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View file

@ -3,6 +3,8 @@ VERSION="2.1.1"
HOMEPAGE="http://www.daughtersoftiresias.org/progs/firefly/" HOMEPAGE="http://www.daughtersoftiresias.org/progs/firefly/"
DOWNLOAD="http://www.daughtersoftiresias.org/progs/firefly/fortune-firefly-2.1.1.tar.bz2" DOWNLOAD="http://www.daughtersoftiresias.org/progs/firefly/fortune-firefly-2.1.1.tar.bz2"
MD5SUM="5fce9b6c951bb73926c5bd9a67892a6a" MD5SUM="5fce9b6c951bb73926c5bd9a67892a6a"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="B. Watson" MAINTAINER="B. Watson"
EMAIL="yalhcru@gmail.com" EMAIL="yalhcru@gmail.com"
APPROVED="dsomero" APPROVED="rworkman"