summaryrefslogtreecommitdiff
path: root/japanese/font-shinonome/pkg-req
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2001-06-23 19:14:58 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2001-06-23 19:14:58 +0000
commit079937228c74f94f991fc389b3d8e471ffb7405b (patch)
tree4555a753a9e21c3b5bec2d30265fa7a559682a9b /japanese/font-shinonome/pkg-req
parentUpgrade to 1.82 . (diff)
Add ja-shinonome, Japanese 12,14,16 dot fonts.
PR: ports/28174 Submitted by: Yoichi NAKAYAMA <yoichi@eken.phys.nagoya-u.ac.jp>
Notes
Notes: svn path=/head/; revision=44363
Diffstat (limited to 'japanese/font-shinonome/pkg-req')
-rw-r--r--japanese/font-shinonome/pkg-req39
1 files changed, 39 insertions, 0 deletions
diff --git a/japanese/font-shinonome/pkg-req b/japanese/font-shinonome/pkg-req
new file mode 100644
index 000000000000..530a1f527213
--- /dev/null
+++ b/japanese/font-shinonome/pkg-req
@@ -0,0 +1,39 @@
+#!/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;