diff options
author | Mamoru Komachi <usata@gentoo.org> | 2003-07-26 18:54:07 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2003-07-26 18:54:07 +0000 |
commit | e53f81f94adee86799689ed8e0aa6fb5f6db817f (patch) | |
tree | bf867a0e7a084f1f41fe87db3464952e96d7cc79 /media-fonts/shinonome | |
parent | Version bump, closing bug #21439 (diff) | |
download | historical-e53f81f94adee86799689ed8e0aa6fb5f6db817f.tar.gz historical-e53f81f94adee86799689ed8e0aa6fb5f6db817f.tar.bz2 historical-e53f81f94adee86799689ed8e0aa6fb5f6db817f.zip |
Version bump, closing bug #21439
Diffstat (limited to 'media-fonts/shinonome')
-rw-r--r-- | media-fonts/shinonome/Manifest | 4 | ||||
-rw-r--r-- | media-fonts/shinonome/files/digest-shinonome-0.9.10 | 1 | ||||
-rw-r--r-- | media-fonts/shinonome/shinonome-0.9.10.ebuild | 51 |
3 files changed, 54 insertions, 2 deletions
diff --git a/media-fonts/shinonome/Manifest b/media-fonts/shinonome/Manifest index 72b2af1da5b7..42b9b862daa2 100644 --- a/media-fonts/shinonome/Manifest +++ b/media-fonts/shinonome/Manifest @@ -1,6 +1,6 @@ -MD5 49920a68a3299833f707b80e815c7317 ChangeLog 889 +MD5 101b37ce8ca4ce92e9318ce1385169eb ChangeLog 888 MD5 e92a48548554c80cf90e18df17ff6a82 metadata.xml 156 MD5 7f65976deef7d4ac37fa19ab6fc7da69 shinonome-0.9.8.ebuild 1198 -MD5 fc49d38e5bd073a8e116e9876e5e7a2c shinonome-0.9.10.ebuild 1266 +MD5 3abe58e2774a8211a146a5ab614802ed shinonome-0.9.10.ebuild 1269 MD5 2647e9b5a2b98f5aebff355368dcdccd files/digest-shinonome-0.9.8 72 MD5 d772a5082a7c835baae47530b8c4842c files/digest-shinonome-0.9.10 70 diff --git a/media-fonts/shinonome/files/digest-shinonome-0.9.10 b/media-fonts/shinonome/files/digest-shinonome-0.9.10 new file mode 100644 index 000000000000..478d30de6831 --- /dev/null +++ b/media-fonts/shinonome/files/digest-shinonome-0.9.10 @@ -0,0 +1 @@ +MD5 76a1312fd717ccabcaf5bad0da87c7b2 shinonome-0.9.10.tar.bz2 4820015 diff --git a/media-fonts/shinonome/shinonome-0.9.10.ebuild b/media-fonts/shinonome/shinonome-0.9.10.ebuild new file mode 100644 index 000000000000..a95024b5b24d --- /dev/null +++ b/media-fonts/shinonome/shinonome-0.9.10.ebuild @@ -0,0 +1,51 @@ +# 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.10.ebuild,v 1.1 2003/07/26 18:53:59 usata Exp $ + +IUSE="" + +DESCRIPTION="Japanese bitmap fonts for X" +SRC_URI="http://openlab.jp/efont/dist/shinonome/${P}.tar.bz2" +HOMEPAGE="http://openlab.jp/efont/shinonome/" + +LICENSE="public-domain" +SLOT=0 +KEYWORDS="~x86 ~alpha ~sparc ~ppc" + +DEPEND="virtual/glibc + virtual/x11 + dev-lang/perl + sys-apps/gawk" +RDEPEND="" + +FONTDIR="/usr/share/fonts/shinonome" + +src_compile(){ + econf --with-pcf --without-bdf --enable-compress=gzip \ + --with-fontdir=${D}/${FONTDIR} || die + + emake || die +} + +src_install(){ + emake install || die + emake install-alias || die + + dodoc AUTHORS BUGS ChangeLog* DESIGN* INSTALL LICENSE README THANKS TODO +} + +pkg_postinst(){ + einfo "You need you add following line into 'Section \"Files\"' in" + einfo "XF86Config and reboot X Window System, to use these fonts." + einfo "" + einfo "\t FontPath \"${FONTDIR}\"" + einfo "" +} + +pkg_postrm(){ + einfo "You need you remove following line in 'Section \"Files\"' in" + einfo "XF86Config, to unmerge this package completely." + einfo "" + einfo "\t FontPath \"${FONTDIR}\"" + einfo "" +} |