system/t1utils: Updated for version 1.32

This commit is contained in:
Kyle Guinn 2010-05-11 19:46:41 +02:00 committed by Robby Workman
parent 621145c046
commit 8ecacc5a98
4 changed files with 12 additions and 6 deletions

View file

@ -11,4 +11,3 @@ file from a PFA or PFB font.
* t1asm: goes the opposite direction
* t1unmac: translates a Macintosh Type 1 font into either PFB or PFA format
* t1mac: goes the opposite direction

View file

@ -1,4 +1,12 @@
t1utils: Type 1 Utilities
# 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------------------------------------------------------|
t1utils: t1utils (Type 1 Utilities)
t1utils:
t1utils: t1utils is a collection of simple type-1 font manipulation programs.
t1utils: Together, they allow you to convert between PFA (ASCII) and PFB

View file

@ -10,7 +10,7 @@ VERSION=1.32
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=`pwd`
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
@ -27,7 +27,6 @@ cd $TMP || exit 1
rm -rf $PRGNAM-$VERSION
tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1
cd $PRGNAM-$VERSION || exit 1
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
@ -44,7 +43,7 @@ make install-strip DESTDIR=$PKG || exit 1
if [ -d $PKG/usr/man ]; then
( 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
for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
)
fi

View file

@ -5,4 +5,4 @@ DOWNLOAD="http://www.lcdf.org/~eddietwo/type/t1utils-1.32.tar.gz"
MD5SUM="733892543a5b852b7e5d87bc58117f53"
MAINTAINER="Kyle Guinn"
EMAIL="elyk03@gmail.com"
APPROVED="robw810"
APPROVED="rworkman"