aboutsummaryrefslogtreecommitdiffstats
path: root/japanese/font-mplus/pkg-req
diff options
context:
space:
mode:
authornobutaka <nobutaka@FreeBSD.org>2003-01-13 22:50:12 +0800
committernobutaka <nobutaka@FreeBSD.org>2003-01-13 22:50:12 +0800
commit92f33cd8202850ff71e4d555e6977d179be3ca36 (patch)
tree09fdc290e25014fcdfd250c317342f02aeefc819 /japanese/font-mplus/pkg-req
parent671585c648cd9c52b30f7242dc646c84ff707f30 (diff)
downloadfreebsd-ports-gnome-92f33cd8202850ff71e4d555e6977d179be3ca36.tar.gz
freebsd-ports-gnome-92f33cd8202850ff71e4d555e6977d179be3ca36.tar.zst
freebsd-ports-gnome-92f33cd8202850ff71e4d555e6977d179be3ca36.zip
Add mplusfonts. 12x13 dots X11 kanji fonts with simple and high readable design.
PR: ports/43358 Submitted by: Yuukis <Ys@PixyGarden.net>
Diffstat (limited to 'japanese/font-mplus/pkg-req')
-rw-r--r--japanese/font-mplus/pkg-req46
1 files changed, 46 insertions, 0 deletions
diff --git a/japanese/font-mplus/pkg-req b/japanese/font-mplus/pkg-req
new file mode 100644
index 000000000000..fd576dda5c63
--- /dev/null
+++ b/japanese/font-mplus/pkg-req
@@ -0,0 +1,46 @@
+#!/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!
+TMPFILE=/tmp/install-fonts-alias-$$
+cat << EOF > ${TMPFILE}
+-mplus-gothic-medium-r-normal--13-120-75-75-c-120-jisx0208.1983-0 -mplus-gothic-medium-r-normal--13-120-75-75-c-120-jisx0208.1990-0
+-mplus-gothic-bold-r-normal--13-120-75-75-c-120-jisx0208.1983-0 -mplus-gothic-bold-r-normal--13-120-75-75-c-120-jisx0208.1990-0
+EOF
+
+echo "Updating ${FONTDIR}/fonts.alias"
+cd ${FONTDIR}
+touch fonts.alias
+cp fonts.alias fonts.alias.orig
+if [ "$2" = "INSTALL" ] ; then
+ (grep -v -e "`cat ${TMPFILE}`" fonts.alias.orig ; \
+ cat ${TMPFILE}) > fonts.alias
+elif [ "$2" = "DEINSTALL" ] ; then
+ grep -v -e "`cat ${TMPFILE}`" fonts.alias.orig > fonts.alias
+fi
+rm -f fonts.alias.orig ${TMPFILE}
+
+echo "**********************************************************"
+echo "You should restart X server or do 'xset fp rehash' command"
+echo "to enable this update."
+echo "**********************************************************"
+
+exit 0;