aboutsummaryrefslogtreecommitdiff
path: root/japanese/font-shinonome/pkg-req
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2004-10-29 09:06:05 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2004-10-29 09:06:05 +0000
commit3add449a170be706377b66bee46af25633bc945c (patch)
tree7415df14a37624ff0b24fd40bde079927a88c28a /japanese/font-shinonome/pkg-req
parent975af646f278430e563b72219a2c3055b211eb1a (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_5_3_0'.release/5.3.0
Notes
Notes: svn path=/head/; revision=120459 svn path=/tags/RELEASE_5_3_0/; revision=120460; tag=release/5.3.0
Diffstat (limited to 'japanese/font-shinonome/pkg-req')
-rw-r--r--japanese/font-shinonome/pkg-req39
1 files changed, 0 insertions, 39 deletions
diff --git a/japanese/font-shinonome/pkg-req b/japanese/font-shinonome/pkg-req
deleted file mode 100644
index 530a1f527213..000000000000
--- a/japanese/font-shinonome/pkg-req
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-
-if [ "x$1" = "x" ]; then
- exit 1;
-fi
-if [ "x$2" != "xINSTALL" -a "x$2" != "xDEINSTALL" ]; then
- exit 1;
-fi
-
-export FONTDIR; FONTDIR=${PKG_PREFIX}/lib/X11/fonts/local
-
-if [ "$2x" = "INSTALLx" -a ! -d ${FONTDIR} ]; then
- echo '**********************************************************************'
- echo "****** ${FONTDIR}/ doesn't exist."
- echo "****** Creating ${FONTDIR}/"
- echo '****** Please upgrade your XFree86 to 3.3.3 or upper,'
- echo "****** or add this directory to your /etc/XF86Config's FontPath entry."
- echo '**********************************************************************'
- mkdir ${FONTDIR}
-fi
-
-# font alias entry here!
-FONTS_ALIAS=${PKG_PREFIX}/share/doc/shinonome/fonts.alias
-
-if [ "$2" = "DEINSTALL" ] ; then
- echo "Updating ${FONTDIR}/fonts.alias"
- cd ${FONTDIR}
- touch fonts.alias
- cp fonts.alias fonts.alias.orig
- grep -v -- "`cat ${FONTS_ALIAS}`" fonts.alias.orig > fonts.alias
- rm -f fonts.alias.orig
-fi
-
-echo "**********************************************************"
-echo "You should restart X server or do 'xset fp rehash' command"
-echo "to enable this update."
-echo "**********************************************************"
-
-exit 0;