diff options
author | Stuart Bouyer <stubear@gentoo.org> | 2002-08-22 15:34:03 +0000 |
---|---|---|
committer | Stuart Bouyer <stubear@gentoo.org> | 2002-08-22 15:34:03 +0000 |
commit | 91d4a3e09574c85c457df000473c93208dfe9add (patch) | |
tree | 8473d17e0a3f37b7f9fd7fc1363336af585bd323 /x11-misc | |
parent | added shinonome for testing (diff) | |
download | historical-91d4a3e09574c85c457df000473c93208dfe9add.tar.gz historical-91d4a3e09574c85c457df000473c93208dfe9add.tar.bz2 historical-91d4a3e09574c85c457df000473c93208dfe9add.zip |
new ebuild for Japanese fonts
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/shinonome/ChangeLog | 11 | ||||
-rw-r--r-- | x11-misc/shinonome/files/digest-shinonome-0.9.8 | 1 | ||||
-rw-r--r-- | x11-misc/shinonome/shinonome-0.9.8.ebuild | 41 |
3 files changed, 53 insertions, 0 deletions
diff --git a/x11-misc/shinonome/ChangeLog b/x11-misc/shinonome/ChangeLog new file mode 100644 index 000000000000..71474d0f1cbb --- /dev/null +++ b/x11-misc/shinonome/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for x11-misc/shinonome +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/shinonome/ChangeLog,v 1.1 2002/08/22 15:34:03 stubear Exp $ + +*shinonome-0.9.8 (22 Aug 2002) + + 22 Aug 2002; Stuart Bouyer <stubear@gentoo.org> shinonome-0.9.8.ebuild, + ChangeLog: + + First ebuild added, thanks to Atzm Watanabe <sitosito@p.chan.ne.jp> for + submitting the ebuild. diff --git a/x11-misc/shinonome/files/digest-shinonome-0.9.8 b/x11-misc/shinonome/files/digest-shinonome-0.9.8 new file mode 100644 index 000000000000..dc43b0ee0d7b --- /dev/null +++ b/x11-misc/shinonome/files/digest-shinonome-0.9.8 @@ -0,0 +1 @@ +MD5 5364b36ce3292e0e01a9b6677bd40a38 shinonome-0.9.8-src.tar.bz2 748849 diff --git a/x11-misc/shinonome/shinonome-0.9.8.ebuild b/x11-misc/shinonome/shinonome-0.9.8.ebuild new file mode 100644 index 000000000000..f26d59bdfc93 --- /dev/null +++ b/x11-misc/shinonome/shinonome-0.9.8.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/shinonome/shinonome-0.9.8.ebuild,v 1.1 2002/08/22 15:34:03 stubear Exp $ + +DESCRIPTION="Japanese bitmap fonts for X" +SRC_URI="http://openlab.jp/efont/dist/shinonome/${P}-src.tar.bz2" +HOMEPAGE="http://openlab.jp/efont/shinonome/" +LICENSE="Public Domain" +SLOT=0 +KEYWORDS="x86" + +DEPEND="virtual/glibc virtual/x11 sys-devel/perl sys-apps/gawk" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${P}-src" + +src_compile(){ + # Install to /usr/X11R6/lib/X11/fonts/shinonome + ./configure \ + --with-fontdir=${D}/usr/X11R6/lib/X11/fonts/shinonome || die + + emake || die +} + +src_install(){ + + emake install || die + emake install-alias || die +} + +pkg_postinst(){ + einfo "You need you add following line into 'Section \"Files\"' in" + einfo "XF86Config and reboot X Window System, to use these fonts." + echo -e "\n\t FontPath \"/usr/X11R6/lib/X11/fonts/shinonome\"\n\n" +} + +pkg_postrm(){ + einfo "You need you remove following line in 'Section \"Files\"' in" + einfo "XF86Config, to unmerge this package completely." + echo -e "\n\t FontPath \"/usr/X11R6/lib/X11/fonts/shinonome\"\n\n" +} |