aboutsummaryrefslogtreecommitdiffstats
path: root/japanese/font-ume/files
diff options
context:
space:
mode:
authorhrs <hrs@FreeBSD.org>2008-05-25 16:01:38 +0800
committerhrs <hrs@FreeBSD.org>2008-05-25 16:01:38 +0800
commit31c2bbd7994442324b3124fa065d81bfbb0bc15f (patch)
tree2923237f2c935c10cba5e5bfaf42b8d052cb45b7 /japanese/font-ume/files
parentc06baf46414f86bcb8a6cb9b6aed10cb56b78fb0 (diff)
downloadfreebsd-ports-gnome-31c2bbd7994442324b3124fa065d81bfbb0bc15f.tar.gz
freebsd-ports-gnome-31c2bbd7994442324b3124fa065d81bfbb0bc15f.tar.zst
freebsd-ports-gnome-31c2bbd7994442324b3124fa065d81bfbb0bc15f.zip
Add Ume Font, another free Japanese TrueType font based on
Sazanami and Wadalab font families. WWW: http://sourceforge.jp/projects/ume-font/wiki/FrontPage
Diffstat (limited to 'japanese/font-ume/files')
-rw-r--r--japanese/font-ume/files/20-unhint-umefont.conf24
-rw-r--r--japanese/font-ume/files/62-fonts-umefont.conf39
-rw-r--r--japanese/font-ume/files/pkg-install.in97
3 files changed, 160 insertions, 0 deletions
diff --git a/japanese/font-ume/files/20-unhint-umefont.conf b/japanese/font-ume/files/20-unhint-umefont.conf
new file mode 100644
index 000000000000..54b9796d27db
--- /dev/null
+++ b/japanese/font-ume/files/20-unhint-umefont.conf
@@ -0,0 +1,24 @@
+<?xml version="1.0"?>
+<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
+<!-- $FreeBSD$ -->
+<fontconfig>
+ <match target="font">
+ <test name="family">
+ <string>Ume Mincho</string>
+ <string>Ume P Mincho</string>
+ <string>Ume Gothic</string>
+ <string>Ume Gothic C4</string>
+ <string>Ume Gothic C5</string>
+ <string>Ume Gothic O5</string>
+ <string>Ume P Gothic</string>
+ <string>Ume P Gothic C4</string>
+ <string>Ume P Gothic C5</string>
+ <string>Ume P Gothic O5</string>
+ <string>Ume UI Gothic</string>
+ <string>Ume UI Gothic O5</string>
+ </test>
+ <edit name="autohint">
+ <bool>false</bool>
+ </edit>
+ </match>
+</fontconfig>
diff --git a/japanese/font-ume/files/62-fonts-umefont.conf b/japanese/font-ume/files/62-fonts-umefont.conf
new file mode 100644
index 000000000000..a9a6feaf2365
--- /dev/null
+++ b/japanese/font-ume/files/62-fonts-umefont.conf
@@ -0,0 +1,39 @@
+<?xml version="1.0"?>
+<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
+<!-- $FreeBSD$ -->
+<fontconfig>
+ <alias>
+ <family>serif</family>
+ <prefer>
+ <family>Ume Mincho</family>
+ <family>Ume P Mincho</family>
+ </prefer>
+ </alias>
+ <alias>
+ <family>sans-serif</family>
+ <prefer>
+ <family>Ume Gothic</family>
+ <family>Ume Gothic C4</family>
+ <family>Ume Gothic C5</family>
+ <family>Ume Gothic O5</family>
+ <family>Ume P Gothic</family>
+ <family>Ume P Gothic C4</family>
+ <family>Ume P Gothic C5</family>
+ <family>Ume P Gothic O5</family>
+ <family>Ume UI Gothic</family>
+ <family>Ume UI Gothic O5</family>
+ </prefer>
+ </alias>
+ <alias>
+ <family>monospace</family>
+ <prefer>
+ <family>Ume Mincho</family>
+ <family>Ume Gothic</family>
+ <family>Ume Gothic C4</family>
+ <family>Ume Gothic C5</family>
+ <family>Ume Gothic O5</family>
+ <family>Ume UI Gothic</family>
+ <family>Ume UI Gothic O5</family>
+ </prefer>
+ </alias>
+</fontconfig>
diff --git a/japanese/font-ume/files/pkg-install.in b/japanese/font-ume/files/pkg-install.in
new file mode 100644
index 000000000000..d213f8e72bc8
--- /dev/null
+++ b/japanese/font-ume/files/pkg-install.in
@@ -0,0 +1,97 @@
+#!/bin/sh
+# $FreeBSD$
+
+X_FONTSDIR=%%X_FONTSDIR%%/TrueType
+
+catfontsdir ()
+{
+ while read _IN
+ do
+ case "${_IN}" in
+ *-ume-*|[0-9]*|"") ;;
+ *) echo ${_IN} ;;
+ esac
+ done
+}
+
+ROMA=""
+BOLD="ds=y"
+ITAL="ai=0.15"
+OBLI="ai=0.15"
+RITA="ai=0.08"
+ROBL="ai=0.08"
+
+make_xlfd()
+{
+ _enc=$1
+ _file=$2
+ _vendor=$3
+ _fname=$4
+ _poc=$5
+
+ case "${_poc}:${_enc}" in
+ p:jisx0201.1976-*) PFIX="fp=y:bw=0.5" ;;
+ c:jisx0201.1976-*) PFIX="fp=n:bw=0.5" ;;
+ p:*) PFIX="fp=y" ;;
+ c:*) PFIX="fp=n" ;;
+ esac
+
+ set -- "${ROMA}" medium-r \
+ ${BOLD} bold-r \
+ ${ITAL} medium-i \
+ ${ITAL}:${BOLD} bold-i \
+ ${OBLI} medium-o \
+ ${OBLI}:${BOLD} bold-o \
+ ${RITA} medium-ri \
+ ${RITA}:${BOLD} bold-ri \
+ ${ROBL} medium-ro \
+ ${ROBL}:${BOLD} bold-ro
+ while [ $# != 0 ]; do
+ _prefix="${PFIX}:$1"; shift
+ _variant=$1; shift
+ printf "%s:%s -%s-%s-%s-normal--0-0-0-0-%s-0-%s\n" \
+ $_prefix $_file $_vendor $_fname $_variant $_poc $_enc
+ done | sed -e 's,::,:,g' -e 's,^:,,'
+}
+
+addentries ()
+{
+ for ENC in iso8859-1 iso10646-1 jisx0201.1976-0 jisx0208.1983-0 jisx0208.1990-0
+ do
+ make_xlfd $ENC ume-pgc4.ttf ume gothic_c4 p
+ make_xlfd $ENC ume-pgc5.ttf ume gothic_c5 p
+ make_xlfd $ENC ume-pgo5.ttf ume gothic_o5 p
+ make_xlfd $ENC ume-pgo4.ttf ume gothic p
+ make_xlfd $ENC ume-tgc4.ttf ume gothic_c4 c
+ make_xlfd $ENC ume-tgc5.ttf ume gothic_c5 c
+ make_xlfd $ENC ume-tgo5.ttf ume gothic_o5 c
+ make_xlfd $ENC ume-tgo4.ttf ume gothic c
+ make_xlfd $ENC ume-ugo4.ttf ume ui_gothic c
+ make_xlfd $ENC ume-ugo5.ttf ume ui_gothic_o5 c
+ make_xlfd $ENC ume-tmo3.ttf ume mincho c
+ make_xlfd $ENC ume-pmo3.ttf ume mincho p
+ done
+}
+
+nfonts ()
+{
+ _L=0; while read _IN; do _L=$((${_L}+1)); done; echo ${_L}
+}
+
+case "$2" in
+POST-INSTALL)
+ cd ${X_FONTSDIR}
+ touch fonts.dir
+ (catfontsdir < fonts.dir; addentries) > fonts.dir.tmp
+ nfonts < fonts.dir.tmp > fonts.dir
+ cat fonts.dir.tmp >> fonts.dir
+ rm -f fonts.dir.tmp
+ ;;
+DEINSTALL)
+ cd ${X_FONTSDIR}
+ catfontsdir < fonts.dir > fonts.dir.tmp
+ nfonts < fonts.dir.tmp > fonts.dir
+ cat fonts.dir.tmp >> fonts.dir
+ rm -f fonts.dir.tmp
+ ;;
+esac