From abf3df8f75b12c628352c02f8c36f71ecf74769e Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Mon, 1 Mar 2010 17:07:51 +0700 Subject: [PATCH] add some fonts from http://www.smashingmagazine.com/2007/11/08/40-excellent-freefonts-for-professional-design/ Signed-off-by: Gwenhael Le Moine --- .../otf-District-Thin.SlackBuild | 72 +++++++++++++++++++ fonts/ttf-MgOpen/ttf-MgOpen.SlackBuild | 71 ++++++++++++++++++ .../ttf-gentium-basic.SlackBuild | 71 ++++++++++++++++++ fonts/ttf-gentium/ttf-gentium.SlackBuild | 71 ++++++++++++++++++ 4 files changed, 285 insertions(+) create mode 100755 fonts/otf-District-Thin/otf-District-Thin.SlackBuild create mode 100755 fonts/ttf-MgOpen/ttf-MgOpen.SlackBuild create mode 100755 fonts/ttf-gentium-basic/ttf-gentium-basic.SlackBuild create mode 100755 fonts/ttf-gentium/ttf-gentium.SlackBuild diff --git a/fonts/otf-District-Thin/otf-District-Thin.SlackBuild b/fonts/otf-District-Thin/otf-District-Thin.SlackBuild new file mode 100755 index 00000000..55f5116e --- /dev/null +++ b/fonts/otf-District-Thin/otf-District-Thin.SlackBuild @@ -0,0 +1,72 @@ +#!/bin/sh + +PRGNAM=$(basename $(pwd)) +VERSION=noversion +ARCH=noarch +BUILD=${BUILD:-1} +TAG=${TAG:-cyco} + +CWD=$(pwd) + +# Place to build (TMP) package (PKG) and output (OUTPUT) the program: +PKG=$TMP/package-$PRGNAM +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/TTF" + +# Move the fonts into place: +mkdir -p $PKG$FONTDIR $PKG/usr/doc/$PRGNAM-$VERSION +( cd $PKG$FONTDIR/ + [ ! -e $CWD/DistrictThinOTF.zip ] && wget -c http://www.philsfonts.com/downloads/DistrictThinOTF.zip -O $CWD/DistrictThinOTF.zip + unzip $CWD/DistrictThinOTF.zip + + find . -type f -name "*.OTF" -o -name "*.otf" -exec mv {} . \; + find . -type f -name ".*" -exec rm -r {} \; + find . -type f -not \( -name "*.OTF" -o -name "*.otf" \) -exec mv {} $PKG/usr/doc/$PRGNAM-$VERSION \; + find . -type d -exec rm -r {} \; +) + +# 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 (font) +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: http://www.philsfonts.com/freefont.html +$PRGNAM: +EOF + +# Build the package: +cd $PKG +makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz 2>&1 | tee $OUTPUT/makepkg-${PRGNAM}.log +cd $OUTPUT +md5sum ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz > ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz.md5 +cd - +cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txt + diff --git a/fonts/ttf-MgOpen/ttf-MgOpen.SlackBuild b/fonts/ttf-MgOpen/ttf-MgOpen.SlackBuild new file mode 100755 index 00000000..c474c958 --- /dev/null +++ b/fonts/ttf-MgOpen/ttf-MgOpen.SlackBuild @@ -0,0 +1,71 @@ +#!/bin/sh + +PRGNAM=$(basename $(pwd)) +VERSION=102 +ARCH=noarch +BUILD=${BUILD:-1} +TAG=${TAG:-cyco} + +CWD=$(pwd) + +# Place to build (TMP) package (PKG) and output (OUTPUT) the program: +PKG=$TMP/package-$PRGNAM +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/TTF" + +# Move the fonts into place: +mkdir -p $PKG$FONTDIR $PKG/usr/doc/$PRGNAM-$VERSION +( cd $PKG$FONTDIR/ + [ ! -e $CWD/MgOpen.tar.gz ] && wget -c http://www.ellak.gr/pub/fonts/mgopen/files/MgOpen.tar.gz -O $CWD/MgOpen.tar.gz + tar xf $CWD/MgOpen.tar.gz + + find . -type f -name "*.?TF" -o -name "*.?tf" -exec mv {} . \; + find . -type f -not \( -name "*.?TF" -o -name "*.?tf" \) -exec mv {} $PKG/usr/doc/$PRGNAM-$VERSION \; + find . -type d -exec rm -r {} \; +) + +# 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 (font) +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: http://www.ellak.gr/pub/fonts/mgopen/index.en.html +$PRGNAM: +EOF + +# Build the package: +cd $PKG +makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz 2>&1 | tee $OUTPUT/makepkg-${PRGNAM}.log +cd $OUTPUT +md5sum ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz > ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz.md5 +cd - +cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txt + diff --git a/fonts/ttf-gentium-basic/ttf-gentium-basic.SlackBuild b/fonts/ttf-gentium-basic/ttf-gentium-basic.SlackBuild new file mode 100755 index 00000000..42d71835 --- /dev/null +++ b/fonts/ttf-gentium-basic/ttf-gentium-basic.SlackBuild @@ -0,0 +1,71 @@ +#!/bin/sh + +PRGNAM=$(basename $(pwd)) +VERSION=110 +ARCH=noarch +BUILD=${BUILD:-1} +TAG=${TAG:-cyco} + +CWD=$(pwd) + +# Place to build (TMP) package (PKG) and output (OUTPUT) the program: +PKG=$TMP/package-$PRGNAM +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/TTF" + +# Move the fonts into place: +mkdir -p $PKG$FONTDIR $PKG/usr/doc/$PRGNAM-$VERSION +( cd $PKG$FONTDIR/ + [ ! -e $CWD/GentiumBasic_${VERSION}.zip ] && wget -c "http://scripts.sil.org/cms/scripts/render_download.php?site_id=nrsi&format=file&media_id=GentiumBasic_${VERSION}&filename=GentiumBasic_${VERSION}.zip" -O $CWD/GentiumBasic_${VERSION}.zip + unzip $CWD/GentiumBasic_${VERSION}.zip + + find . -type f -name "*.ttf" -exec mv {} . \; + find . -type f -not -name "*.ttf" -exec mv {} $PKG/usr/doc/$PRGNAM-$VERSION \; + find . -type d -exec rm -r {} \; +) + +# 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 (font) +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=Gentium +$PRGNAM: +EOF + +# Build the package: +cd $PKG +makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz 2>&1 | tee $OUTPUT/makepkg-${PRGNAM}.log +cd $OUTPUT +md5sum ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz > ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz.md5 +cd - +cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txt + diff --git a/fonts/ttf-gentium/ttf-gentium.SlackBuild b/fonts/ttf-gentium/ttf-gentium.SlackBuild new file mode 100755 index 00000000..a63a72f6 --- /dev/null +++ b/fonts/ttf-gentium/ttf-gentium.SlackBuild @@ -0,0 +1,71 @@ +#!/bin/sh + +PRGNAM=$(basename $(pwd)) +VERSION=102 +ARCH=noarch +BUILD=${BUILD:-1} +TAG=${TAG:-cyco} + +CWD=$(pwd) + +# Place to build (TMP) package (PKG) and output (OUTPUT) the program: +PKG=$TMP/package-$PRGNAM +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/TTF" + +# Move the fonts into place: +mkdir -p $PKG$FONTDIR $PKG/usr/doc/$PRGNAM-$VERSION +( cd $PKG$FONTDIR/ + [ ! -e $CWD/Gentium_${VERSION}_W.zip ] && wget -c "http://scripts.sil.org/cms/scripts/render_download.php?site_id=nrsi&format=file&media_id=Gentium_${VERSION}_W&filename=Gentium_${VERSION}_W.zip" -O $CWD/Gentium_${VERSION}_W.zip + unzip $CWD/Gentium_${VERSION}_W.zip + + find . -type f -name "*.TTF" -exec mv {} . \; + find . -type f -not -name "*.TTF" -exec mv {} $PKG/usr/doc/$PRGNAM-$VERSION \; + find . -type d -exec rm -r {} \; +) + +# 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 (font) +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=Gentium +$PRGNAM: +EOF + +# Build the package: +cd $PKG +makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz 2>&1 | tee $OUTPUT/makepkg-${PRGNAM}.log +cd $OUTPUT +md5sum ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz > ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz.md5 +cd - +cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txt +