system/t1utils: Removed (build failure)

This appears related to changes in glibc-2.11.x
This commit is contained in:
dsomero 2010-05-20 23:14:25 -04:00 committed by David Somero
parent c931d17f01
commit 48439c993c
4 changed files with 0 additions and 112 deletions

View file

@ -1,13 +0,0 @@
t1utils is a collection of simple Type 1 font manipulation programs. Together,
they allow you to convert between PFA (ASCII) and PFB (binary) formats,
disassemble PFA or PFB files into human-readable form, and reassemble them
into PFA or PFB format. Additionally you can extract font resources from
a Macintosh font file (ATM/Laserwriter), or create a Macintosh Type 1 font
file from a PFA or PFB font.
* t1ascii: changes PFB (binary) fonts into PFA (ASCII) format
* t1binary: goes the opposite direction
* t1disasm: translates PFBs or PFAs into a human-readable and -editable format
* 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,19 +0,0 @@
# 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 Font 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
t1utils: (binary) formats, disassemble PFA or PFB files into human-readable
t1utils: form, and reassemble them into PFA or PFB format. Additionally you
t1utils: can extract font resources from a Macintosh font file
t1utils: (ATM/Laserwriter), or create a Macintosh Type 1 font file from a
t1utils: PFA or PFB font.
t1utils:
t1utils:

View file

@ -1,70 +0,0 @@
#!/bin/sh
# Slackware build script for t1utils
# Written by Kyle Guinn <elyk03@gmail.com>
PRGNAM="t1utils"
VERSION=${VERSION:-"1.33"}
ARCH=${ARCH:-"i486"}
BUILD=${BUILD:-"1"}
TAG=${TAG:-"_SBo"}
CWD=$(pwd)
TMP=${TMP:-"/tmp/SBo"}
PKG="$TMP/package-$PRGNAM-$VERSION"
OUTPUT=${OUTPUT:-"/tmp"}
DOCS="INSTALL NEWS README"
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX=""
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-st .
CFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--libdir=/usr/lib$LIBDIRSUFFIX \
--sysconfdir=/etc \
--localstatedir=/var \
--infodir=/usr/info \
--mandir=/usr/man \
--docdir=/usr/doc/$PRGNAM-$VERSION
make
make install-strip DESTDIR=$PKG
( 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 $DOCS $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.${PKGTYPE:-tgz}

View file

@ -1,10 +0,0 @@
PRGNAM="t1utils"
VERSION="1.33"
HOMEPAGE="http://www.lcdf.org/~eddietwo/type/"
DOWNLOAD="http://www.lcdf.org/~eddietwo/type/t1utils-1.33.tar.gz"
MD5SUM="a8d9dad4eab239357dd045275770eb8f"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Kyle Guinn"
EMAIL="elyk03@gmail.com"
APPROVED="Erik Hanson"