diff options
Diffstat (limited to 'media-fonts/unifont/unifont-6.3.20140204.ebuild')
-rw-r--r-- | media-fonts/unifont/unifont-6.3.20140204.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/media-fonts/unifont/unifont-6.3.20140204.ebuild b/media-fonts/unifont/unifont-6.3.20140204.ebuild deleted file mode 100644 index ebbe243af794..000000000000 --- a/media-fonts/unifont/unifont-6.3.20140204.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit eutils font toolchain-funcs - -DESCRIPTION="GNU Unifont - a Pan-Unicode X11 bitmap iso10646 font" -HOMEPAGE="http://unifoundry.com/" -SRC_URI="mirror://gnu/${PN}/${P}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" -IUSE="fontforge utils" - -DEPEND=" - fontforge? ( - app-text/bdf2psf - dev-lang/perl - media-gfx/fontforge - x11-apps/bdftopcf - ) -" -RDEPEND=" - utils? ( dev-lang/perl ) -" - -src_prepare() { - sed -i -e 's/install -s/install/' src/Makefile || die - epatch "${FILESDIR}/unifont-6.3.20140204-make.patch" - epatch_user -} - -src_compile() { - tc-export CC - makeargs=( - CFLAGS="${CFLAGS}" - ) - use fontforge && emake -j1 "${makeargs[@]}" BUILDFONT=1 -} - -src_install() { - makeargs+=( - DESTDIR="${ED%/}" - PCFDEST="${ED%/}${FONTDIR}" - TTFDEST="${ED%/}${FONTDIR}" - USRDIR=usr - ) - use utils || makeargs+=( -C font ) - emake -j1 "${makeargs[@]}" install - font_xfont_config - font_fontconfig -} |