diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2006-01-11 21:48:28 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2006-01-11 21:48:28 +0000 |
commit | d7e6dd14bf47bf4f6405c618fe878e47415fdc20 (patch) | |
tree | ab3bb4771d7f69d43d89b1fa88f7ca26a1246eb1 /media-fonts/monafont/monafont-2.90-r2.ebuild | |
parent | old (diff) | |
download | historical-d7e6dd14bf47bf4f6405c618fe878e47415fdc20.tar.gz historical-d7e6dd14bf47bf4f6405c618fe878e47415fdc20.tar.bz2 historical-d7e6dd14bf47bf4f6405c618fe878e47415fdc20.zip |
Fix DEPEND/RDEPEND for modular-X.
Package-Manager: portage-2.0.54
Diffstat (limited to 'media-fonts/monafont/monafont-2.90-r2.ebuild')
-rw-r--r-- | media-fonts/monafont/monafont-2.90-r2.ebuild | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/media-fonts/monafont/monafont-2.90-r2.ebuild b/media-fonts/monafont/monafont-2.90-r2.ebuild new file mode 100644 index 000000000000..cbe9503f2140 --- /dev/null +++ b/media-fonts/monafont/monafont-2.90-r2.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-fonts/monafont/monafont-2.90-r2.ebuild,v 1.1 2006/01/11 21:48:28 robbat2 Exp $ + +inherit font + +MY_P="${P/_/}" + +DESCRIPTION="Japanese bitmap and TrueType fonts suitable for browsing 2ch" +HOMEPAGE="http://monafont.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2 + truetype? ( mirror://sourceforge/${PN}/${PN}-ttf-${PV}.zip )" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="truetype" + +DEPEND="|| ( ( x11-apps/bdftopcf x11-apps/mkfontdir ) virtual/x11 ) + dev-lang/perl + >=sys-apps/sed-4 + app-arch/unzip" +RDEPEND="" + +S="${WORKDIR}/${MY_P}" +FONT_S="${WORKDIR}" +FONT_SUFFIX="ttf" +FONTDIR="/usr/share/fonts/${PN}" + +src_unpack() { + unpack ${A} + sed -i -e 's:$(X11BINDIR)/mkdirhier:/bin/mkdir -p:' ${S}/Makefile +} + +src_compile() { + PERL_BADLANG=0 ; LC_CTYPE=C + export PERL_BADLANG LC_CTYPE + emake || die +} + +src_install() { + make install X11FONTDIR="${D}/${FONTDIR}" || die + mkfontdir ${D}/${FONTDIR} + insinto ${FONTDIR} + newins fonts.alias.mona fonts.alias + dodoc README* + + if use truetype ; then + DOCS=${WORKDIR}/README-ttf.txt + font_src_install + fi +} + +pkg_postinst() { + einfo + einfo "You need to add following line into 'Section \"Files\"' in" + einfo "XF86Config and reboot X Window System, to use these fonts." + einfo + einfo "\tFontPath \"${FONTDIR}\"" + einfo +} + +pkg_postrm() { + einfo + einfo "You need to remove following line in 'Section \"Files\"' in" + einfo "XF86Config, to unmerge this package completely." + einfo + einfo "\tFontPath \"${FONTDIR}\"" + einfo +} |