#!/bin/sh if [ ${II2BUILDSTAMP} -lt 1160910526 ] then echo "### You need at least i-Installer 2.83 for this package. Bailing out..." >&2 exit 1 fi PROGNAME=`"${II2RESOURCES}/basename" "$0"` echo "### ${PROGNAME}: Started..." source "${II2RESOURCES}/ii2shfuncs.sh" || \ { echo "### ${PROGNAME}: Cannot load ${II2RESOURCES}/ii2shfuncs.sh. Bailing out..." ; \ exit 1; } ii2checksanity ii2calledfrom ii2checksubdirs "${II2INSTALLDIR}" bin man/man1 share/lcdf-typetools echo "### ${PROGNAME}: Removing previous install (if any)" (cd "${II2INSTALLDIR}" && \ rm -rf \ ./bin/cfftot1 \ ./bin/mmafm \ ./bin/mmpfb \ ./bin/otfinfo \ ./bin/otftotfm \ ./bin/t1dotlessj \ ./bin/t1lint \ ./bin/t1testpage \ ./man/man1/cfftot1.1 \ ./man/man1/mmafm.1 \ ./man/man1/mmpfb.1 \ ./man/man1/otfinfo.1 \ ./man/man1/otftotfm.1 \ ./man/man1/t1dotlessj.1 \ ./man/man1/t1lint.1 \ ./man/man1/t1testpage.1 \ ./share/lcdf-typetools ) ii2removeemptysubdirs "${II2INSTALLDIR}" bin man/man3 man/man1 share echo "### ${PROGNAME}: Finished." exit 0 # $Id: lcdftypetools.remove 75 2006-10-27 19:45:14Z gctwnl $