diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2003-06-23 07:16:47 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2003-06-23 07:16:47 +0000 |
commit | b8ba9e6bc27f25423308ea59b852a2ed4618d040 (patch) | |
tree | d2eca7942d95ab782f50b49a8429e891c9105ca8 /media-fonts | |
parent | Moving from x11-misc to media-fonts (diff) | |
download | gentoo-2-b8ba9e6bc27f25423308ea59b852a2ed4618d040.tar.gz gentoo-2-b8ba9e6bc27f25423308ea59b852a2ed4618d040.tar.bz2 gentoo-2-b8ba9e6bc27f25423308ea59b852a2ed4618d040.zip |
Moving from x11-misc to media-fonts
Diffstat (limited to 'media-fonts')
-rw-r--r-- | media-fonts/shinonome/ChangeLog | 17 | ||||
-rw-r--r-- | media-fonts/shinonome/Manifest | 3 | ||||
-rw-r--r-- | media-fonts/shinonome/files/digest-shinonome-0.9.8 | 1 | ||||
-rw-r--r-- | media-fonts/shinonome/shinonome-0.9.8.ebuild | 40 |
4 files changed, 61 insertions, 0 deletions
diff --git a/media-fonts/shinonome/ChangeLog b/media-fonts/shinonome/ChangeLog new file mode 100644 index 000000000000..fa2d90fd0347 --- /dev/null +++ b/media-fonts/shinonome/ChangeLog @@ -0,0 +1,17 @@ +# ChangeLog for x11-misc/shinonome +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-fonts/shinonome/ChangeLog,v 1.1 2003/06/23 07:14:55 phosphan Exp $ + + 23 Jun 2003; Patrick Kursawe <phosphan@gentoo.org> : + moving from x11-misc to media-fonts + +*shinonome-0.9.8 (22 Aug 2002) + + 03 Mar 2003; Graham Forest <vladimir@gentoo.org> shinonome-0.9.8.ebuild: + Fixed small LICENSE problem + + 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/media-fonts/shinonome/Manifest b/media-fonts/shinonome/Manifest index e69de29bb2d1..3a92d34e177c 100644 --- a/media-fonts/shinonome/Manifest +++ b/media-fonts/shinonome/Manifest @@ -0,0 +1,3 @@ +MD5 7f65976deef7d4ac37fa19ab6fc7da69 shinonome-0.9.8.ebuild 1198 +MD5 171ade6d7460a98153cb8187dee1138b ChangeLog 642 +MD5 2647e9b5a2b98f5aebff355368dcdccd files/digest-shinonome-0.9.8 72 diff --git a/media-fonts/shinonome/files/digest-shinonome-0.9.8 b/media-fonts/shinonome/files/digest-shinonome-0.9.8 new file mode 100644 index 000000000000..dc43b0ee0d7b --- /dev/null +++ b/media-fonts/shinonome/files/digest-shinonome-0.9.8 @@ -0,0 +1 @@ +MD5 5364b36ce3292e0e01a9b6677bd40a38 shinonome-0.9.8-src.tar.bz2 748849 diff --git a/media-fonts/shinonome/shinonome-0.9.8.ebuild b/media-fonts/shinonome/shinonome-0.9.8.ebuild new file mode 100644 index 000000000000..ead239971591 --- /dev/null +++ b/media-fonts/shinonome/shinonome-0.9.8.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-fonts/shinonome/shinonome-0.9.8.ebuild,v 1.1 2003/06/23 07:14:55 phosphan 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 dev-lang/perl sys-apps/gawk" + +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" +} |