From c5a41a2774aab0f29df8ea874eb68cb33256e5a4 Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Fri, 5 Feb 2010 16:33:48 +0700 Subject: [PATCH] add fonts/Hoefler-Text Signed-off-by: Gwenhael Le Moine --- fonts/Hoefler-Text/Hoefler-Text.SlackBuild | 72 ++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100755 fonts/Hoefler-Text/Hoefler-Text.SlackBuild diff --git a/fonts/Hoefler-Text/Hoefler-Text.SlackBuild b/fonts/Hoefler-Text/Hoefler-Text.SlackBuild new file mode 100755 index 00000000..1bcc9c18 --- /dev/null +++ b/fonts/Hoefler-Text/Hoefler-Text.SlackBuild @@ -0,0 +1,72 @@ +#!/bin/sh + +PRGNAM=Hoefler-Text +VERSION=${VERSION:-$(date +"%Y.%m.%d_%H:%M")} +ARCH=font +BUILD=${BUILD:-1} +TAG=${TAG:-cyco} + +CWD=$(pwd) + +# Place to build (TMP) package (PKG) and output (OUTPUT) the program: +PKG=$TMP/package-$PRGNAM +TMP=/tmp +OUTPUT=${OUTPUT:-/tmp} + +# Create working directories: +mkdir -p $OUTPUT # place for the package to be saved +mkdir -p $PKG # place for the package to be built +rm -rf $PKG/* # always erase old package's contents +rm -rf $OUTPUT/{configure,make,install,error,makepkg}-$PRGNAM.log + # remove old log files + +FONTDIR="/usr/share/fonts" + +# Move the fonts into place: +mkdir -p $PKG$FONTDIR/TTF +mkdir -p $PKG/usr/doc/$PRGNAM + +( cd $PKG$FONTDIR/TTF + for fnt in bold.ttf bolditalic.ttf italic.ttf ornaments.ttf regular.ttf ; do + [ ! -e $CWD/$fnt ] && ( cd $CWD ; wget -c http://foohack.com/tpl/fonts/Hoefler-Text/$fnt ) + cp $CWD/$fnt ./$PRGNAM-$fnt + done +) +( cd $PKG/usr/doc/$PRGNAM + [ ! -e $CWD/Hoefler\ Text.dfont ] && ( cd $CWD ; wget -c http://foohack.com/tpl/fonts/Hoefler-Text/Hoefler\ Text.dfont ) + cp $CWD/Hoefler\ Text.dfont . +) + +# Post-install script: +mkdir -p $PKG/install +cat < $PKG/install/doinst.sh +# Update X font indexes and the font cache: +if [ -x .$XPREF/bin/mkfontdir ]; then + chroot . $XPREF/bin/mkfontscale $FONTDIR + chroot . $XPREF/bin/mkfontdir $FONTDIR +fi +if [ -x .$XPREF/bin/fc-cache ]; then + chroot . $XPREF/bin/fc-cache -f $FONTDIR +fi +EOT + +# Add a package description: +mkdir -p $PKG/install +cat < $PKG/install/slack-desc +$PRGNAM: $PRGNAM (Apple font) +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: http://foohack.com/tpl/fonts/Hoefler-Text/ +$PRGNAM: +EOF + +# Build the package: +cd $PKG +makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz +