summaryrefslogtreecommitdiff
path: root/fonts/ja-shinonome
diff options
context:
space:
mode:
authorkei <kei>2003-03-15 20:57:50 +0000
committerkei <kei>2003-03-15 20:57:50 +0000
commitfd50e6e2d82dd24834040663edc59e268a923b08 (patch)
treedf0f40690a03bb61cdde97072675890cdfb27169 /fonts/ja-shinonome
parent65bdce811d24192589e7fe45e38426f5f7fd74b3 (diff)
downloadpkgsrc-fd50e6e2d82dd24834040663edc59e268a923b08.tar.gz
initial import of ja-shinonome-0.9.9 pacakge. this is a part of splitting
jisx0208fonts package into multiple packages. "Shinonome Font Family" is a set of BDF bitmap fonts. The original author Yasuyuki Furukawa was pleased to hand over its maintenance to the /efont/. It includes 12, 14, 16 dots Japanese (JIS X 0201/0208) and ISO8859-1 terminal fonts. 18 dots ISO8859-1 fonts are also included. All of the above fonts have normal, bold, italic, and bold-italic faces. These fonts are in Public Domain. Share and Enjoy.
Diffstat (limited to 'fonts/ja-shinonome')
-rw-r--r--fonts/ja-shinonome/DEINSTALL26
-rw-r--r--fonts/ja-shinonome/DESCR8
-rw-r--r--fonts/ja-shinonome/INSTALL28
-rw-r--r--fonts/ja-shinonome/Makefile34
-rw-r--r--fonts/ja-shinonome/PLIST66
-rw-r--r--fonts/ja-shinonome/distinfo5
-rw-r--r--fonts/ja-shinonome/patches/patch-zz32
7 files changed, 199 insertions, 0 deletions
diff --git a/fonts/ja-shinonome/DEINSTALL b/fonts/ja-shinonome/DEINSTALL
new file mode 100644
index 00000000000..23fdbfed83b
--- /dev/null
+++ b/fonts/ja-shinonome/DEINSTALL
@@ -0,0 +1,26 @@
+#!/bin/sh
+#
+# $NetBSD: DEINSTALL,v 1.1.1.1 2003/03/15 20:57:50 kei Exp $
+
+ALIAS=@FONTDIR@/fonts.alias
+
+case ${STAGE} in
+PRE-DEINSTALL)
+ ;;
+
+DEINSTALL)
+ ;;
+
+POST-DEINSTALL)
+ ${SED} -e '/^-- BEGIN shinonome --/,/^-- END shinonome --/d' \
+ < ${ALIAS} > ${ALIAS}.new
+ ${MV} ${ALIAS}.new ${ALIAS}
+ mkfontdir @FONTDIR@
+ ;;
+
+*)
+ ${ECHO} "Unexpected argument: ${STAGE}"
+ exit 1
+ ;;
+
+esac
diff --git a/fonts/ja-shinonome/DESCR b/fonts/ja-shinonome/DESCR
new file mode 100644
index 00000000000..bad6c3c0009
--- /dev/null
+++ b/fonts/ja-shinonome/DESCR
@@ -0,0 +1,8 @@
+"Shinonome Font Family" is a set of BDF bitmap fonts. The original author
+Yasuyuki Furukawa was pleased to hand over its maintenance to the /efont/.
+
+It includes 12, 14, 16 dots Japanese (JIS X 0201/0208) and ISO8859-1
+terminal fonts. 18 dots ISO8859-1 fonts are also included. All of the
+above fonts have normal, bold, italic, and bold-italic faces.
+
+These fonts are in Public Domain. Share and Enjoy.
diff --git a/fonts/ja-shinonome/INSTALL b/fonts/ja-shinonome/INSTALL
new file mode 100644
index 00000000000..6df2d980784
--- /dev/null
+++ b/fonts/ja-shinonome/INSTALL
@@ -0,0 +1,28 @@
+#!/bin/sh
+#
+# $NetBSD: INSTALL,v 1.1.1.1 2003/03/15 20:57:50 kei Exp $
+
+ALIAS=@FONTDIR@/fonts.alias
+
+case ${STAGE} in
+PRE-INSTALL)
+ ;;
+
+POST-INSTALL)
+ ${ECHO} '-- BEGIN shinonome --' >> ${ALIAS}
+ ${CAT} @ALIAS_SHINONOME@ >> ${ALIAS}
+ ${ECHO} >> ${ALIAS}
+ ${ECHO} '!! shinonome generic aliases' >> ${ALIAS}
+ ${CAT} @ALIAS_SHINONOME@ | \
+ ${GREP} 'mincho-.*-misc-' | \
+ ${SED} -e 's/mincho/fixed/' >> ${ALIAS}
+ ${ECHO} '-- END shinonome --' >> ${ALIAS}
+ mkfontdir @FONTDIR@
+ ;;
+
+*)
+ ${ECHO} "Unexpected argument: ${STAGE}"
+ exit 1
+ ;;
+
+esac
diff --git a/fonts/ja-shinonome/Makefile b/fonts/ja-shinonome/Makefile
new file mode 100644
index 00000000000..936df444234
--- /dev/null
+++ b/fonts/ja-shinonome/Makefile
@@ -0,0 +1,34 @@
+# $NetBSD: Makefile,v 1.1.1.1 2003/03/15 20:57:50 kei Exp $
+
+DISTNAME= shinonome-0.9.9-src
+PKGNAME= ja-shinonome-0.9.9
+CATEGORIES= fonts x11 japanese
+MASTER_SITES= http://openlab.ring.gr.jp/efont/dist/shinonome/
+EXTRACT_SUFX= .tar.bz2
+
+MAINTAINER= tech-pkg-ja@jp.netbsd.org
+HOMEPAGE= http://openlab.ring.gr.jp/efont/shinonome/
+COMMENT= 12, 14, 16 dots bitmap fonts for Japanese, iso8859-1
+
+GNU_CONFIGURE= YES
+USE_PERL5= build
+USE_X11BASE= YES
+USE_GMAKE= YES
+FONTDIR= ${PREFIX}/lib/X11/fonts/local
+FOUNDRY= Misc
+ALIAS_SHINONOME= ${PREFIX}/share/examples/fonts.alias.shinonome
+
+FILES_SUBST+= FONTDIR=${FONTDIR}
+FILES_SUBST+= ALIAS_SHINONOME=${ALIAS_SHINONOME}
+
+CONFIGURE_ARGS+= --with-fontdir=${FONTDIR}
+CONFIGURE_ARGS+= --disable-progressbar
+CONFIGURE_ARGS+= --with-foundry=${FOUNDRY}
+
+do-install:
+ cd ${WRKSRC}; \
+ ${MAKE_PROGRAM} install; \
+ ${INSTALL_DATA} ${WRKSRC}/fonts.alias ${ALIAS_SHINONOME}
+
+.include "../../mk/bsd.pkg.install.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/fonts/ja-shinonome/PLIST b/fonts/ja-shinonome/PLIST
new file mode 100644
index 00000000000..241aef2ba0f
--- /dev/null
+++ b/fonts/ja-shinonome/PLIST
@@ -0,0 +1,66 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2003/03/15 20:57:50 kei Exp $
+lib/X11/fonts/local/shnm6x12a.pcf.gz
+lib/X11/fonts/local/shnm6x12ab.pcf.gz
+lib/X11/fonts/local/shnm6x12abi.pcf.gz
+lib/X11/fonts/local/shnm6x12ai.pcf.gz
+lib/X11/fonts/local/shnm6x12r.pcf.gz
+lib/X11/fonts/local/shnm6x12rb.pcf.gz
+lib/X11/fonts/local/shnm6x12rbi.pcf.gz
+lib/X11/fonts/local/shnm6x12ri.pcf.gz
+lib/X11/fonts/local/shnm7x14a.pcf.gz
+lib/X11/fonts/local/shnm7x14ab.pcf.gz
+lib/X11/fonts/local/shnm7x14abi.pcf.gz
+lib/X11/fonts/local/shnm7x14ai.pcf.gz
+lib/X11/fonts/local/shnm7x14r.pcf.gz
+lib/X11/fonts/local/shnm7x14rb.pcf.gz
+lib/X11/fonts/local/shnm7x14rbi.pcf.gz
+lib/X11/fonts/local/shnm7x14ri.pcf.gz
+lib/X11/fonts/local/shnm8x16a.pcf.gz
+lib/X11/fonts/local/shnm8x16ab.pcf.gz
+lib/X11/fonts/local/shnm8x16abi.pcf.gz
+lib/X11/fonts/local/shnm8x16ai.pcf.gz
+lib/X11/fonts/local/shnm8x16r.pcf.gz
+lib/X11/fonts/local/shnm8x16rb.pcf.gz
+lib/X11/fonts/local/shnm8x16rbi.pcf.gz
+lib/X11/fonts/local/shnm8x16ri.pcf.gz
+lib/X11/fonts/local/shnm9x18a.pcf.gz
+lib/X11/fonts/local/shnm9x18ab.pcf.gz
+lib/X11/fonts/local/shnm9x18abi.pcf.gz
+lib/X11/fonts/local/shnm9x18ai.pcf.gz
+lib/X11/fonts/local/shnm9x18r.pcf.gz
+lib/X11/fonts/local/shnm9x18rb.pcf.gz
+lib/X11/fonts/local/shnm9x18rbi.pcf.gz
+lib/X11/fonts/local/shnm9x18ri.pcf.gz
+lib/X11/fonts/local/shnmk12.pcf.gz
+lib/X11/fonts/local/shnmk12b.pcf.gz
+lib/X11/fonts/local/shnmk12bi.pcf.gz
+lib/X11/fonts/local/shnmk12i.pcf.gz
+lib/X11/fonts/local/shnmk12maru.pcf.gz
+lib/X11/fonts/local/shnmk12marub.pcf.gz
+lib/X11/fonts/local/shnmk12marubi.pcf.gz
+lib/X11/fonts/local/shnmk12marui.pcf.gz
+lib/X11/fonts/local/shnmk12min.pcf.gz
+lib/X11/fonts/local/shnmk12minb.pcf.gz
+lib/X11/fonts/local/shnmk12minbi.pcf.gz
+lib/X11/fonts/local/shnmk12mini.pcf.gz
+lib/X11/fonts/local/shnmk12p.pcf.gz
+lib/X11/fonts/local/shnmk12pb.pcf.gz
+lib/X11/fonts/local/shnmk12pbi.pcf.gz
+lib/X11/fonts/local/shnmk12pi.pcf.gz
+lib/X11/fonts/local/shnmk14.pcf.gz
+lib/X11/fonts/local/shnmk14b.pcf.gz
+lib/X11/fonts/local/shnmk14bi.pcf.gz
+lib/X11/fonts/local/shnmk14i.pcf.gz
+lib/X11/fonts/local/shnmk14min.pcf.gz
+lib/X11/fonts/local/shnmk14minb.pcf.gz
+lib/X11/fonts/local/shnmk14minbi.pcf.gz
+lib/X11/fonts/local/shnmk14mini.pcf.gz
+lib/X11/fonts/local/shnmk16.pcf.gz
+lib/X11/fonts/local/shnmk16b.pcf.gz
+lib/X11/fonts/local/shnmk16bi.pcf.gz
+lib/X11/fonts/local/shnmk16i.pcf.gz
+lib/X11/fonts/local/shnmk16min.pcf.gz
+lib/X11/fonts/local/shnmk16minb.pcf.gz
+lib/X11/fonts/local/shnmk16minbi.pcf.gz
+lib/X11/fonts/local/shnmk16mini.pcf.gz
+share/examples/fonts.alias.shinonome
diff --git a/fonts/ja-shinonome/distinfo b/fonts/ja-shinonome/distinfo
new file mode 100644
index 00000000000..31f6b45a9b9
--- /dev/null
+++ b/fonts/ja-shinonome/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2003/03/15 20:57:50 kei Exp $
+
+SHA1 (shinonome-0.9.9-src.tar.bz2) = 3d2efa44b2ab3113acf2bb90cd74d2c9a4caa2bc
+Size (shinonome-0.9.9-src.tar.bz2) = 749473 bytes
+SHA1 (patch-zz) = ce44b87c2b49264a1c81443db0c3dd2a5408f92e
diff --git a/fonts/ja-shinonome/patches/patch-zz b/fonts/ja-shinonome/patches/patch-zz
new file mode 100644
index 00000000000..7295241055c
--- /dev/null
+++ b/fonts/ja-shinonome/patches/patch-zz
@@ -0,0 +1,32 @@
+$NetBSD: patch-zz,v 1.1.1.1 2003/03/15 20:57:50 kei Exp $
+
+--- 12/mincho/font_src_diff.bit 28 Apr 2001 16:13:47 -0000 1.3
++++ 12/mincho/font_src_diff.bit 8 Feb 2003 06:02:29 -0000
+@@ -2019,17 +2019,17 @@
+ DWIDTH 12 0
+ BBX 12 12 0 -2
+ BITMAP
+-....@.......
+-.....@...@.@
+-.....@@@@@.@
+-....@....@..
+-....@...@...
+-...@.@..@...
+-..@...@@....
+-......@.....
++...@........
++....@...@.@.
++....@@@@@.@.
++...@....@...
++...@...@....
++..@.@..@....
++.@...@@.....
+ .....@......
+-...@@.......
+-.@@.........
++....@.......
++..@@........
++@@..........
+ ............
+ ENDCHAR # ¥À
+ STARTCHAR 2541