diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2006-01-11 22:59:26 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2006-01-11 22:59:26 +0000 |
commit | 414f87015b68b479798719fb780809d47c83343c (patch) | |
tree | 29f8655ec2919239a81f79c94603429d785af0c8 /media-fonts/unifont/unifont-1.0-r3.ebuild | |
parent | Version bump. (diff) | |
download | historical-414f87015b68b479798719fb780809d47c83343c.tar.gz historical-414f87015b68b479798719fb780809d47c83343c.tar.bz2 historical-414f87015b68b479798719fb780809d47c83343c.zip |
Fix DEPEND for modular-X.
Package-Manager: portage-2.0.54
Diffstat (limited to 'media-fonts/unifont/unifont-1.0-r3.ebuild')
-rw-r--r-- | media-fonts/unifont/unifont-1.0-r3.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/media-fonts/unifont/unifont-1.0-r3.ebuild b/media-fonts/unifont/unifont-1.0-r3.ebuild new file mode 100644 index 000000000000..9be637437594 --- /dev/null +++ b/media-fonts/unifont/unifont-1.0-r3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-fonts/unifont/unifont-1.0-r3.ebuild,v 1.1 2006/01/11 22:59:26 robbat2 Exp $ + +inherit eutils + +IUSE="X" + +DESCRIPTION="X11 GNU unicode font" +HOMEPAGE="http://czyborra.com/" +SRC_URI="mirror://debian/pool/main/u/unifont/${P/-/_}.orig.tar.gz + mirror://debian/pool/main/u/unifont/${P/-/_}-1.diff.gz" + +LICENSE="freedist" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" + +DEPEND="dev-lang/perl + || ( x11-apps/bdftopcf virtual/x11 ) + X? ( || ( x11-apps/mkfontdir virtual/x11 ) )" +RDEPEND="" + +FONTPATH="/usr/share/fonts/${PN}" +S="${WORKDIR}/${PN}-dvdeug-${PV}" + +src_unpack() { + unpack ${A} + cd ${S} + epatch "${WORKDIR}/${P/-/_}-1.diff" +} + +src_compile() { + emake || die + emake -f Makefile.new || die +} + +src_install() { + insinto ${FONTPATH} + doins unifont*.gz + use X && mkfontdir ${D}${FONTPATH} +} |