blob: 5119e7c04d320182ceac6273415808ef28ca2885 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/unifont/unifont-6.3.20131020.ebuild,v 1.2 2013/11/04 18:51:34 floppym Exp $
EAPI=5
inherit eutils font toolchain-funcs
DESCRIPTION="GNU Unifont - a Pan-Unicode X11 bitmap iso10646 font"
HOMEPAGE="http://unifoundry.com/"
SRC_URI="http://unifoundry.com/pub/${P}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="fontforge"
DEPEND="fontforge? ( media-gfx/fontforge )"
RDEPEND=""
src_prepare() {
sed -i -e 's/install -s/install/' src/Makefile || die
}
src_compile() {
tc-export CC
makeargs=(
CFLAGS="${CFLAGS}"
UNASSIGNED=
)
use fontforge && emake -j1 "${makeargs[@]}"
}
src_install() {
makeargs+=(
DESTDIR="${ED%/}"
PCFDEST="${ED%/}${FONTDIR}"
TTFDEST="${ED%/}${FONTDIR}"
USRDIR=usr
)
emake -j1 "${makeargs[@]}" install
font_xfont_config
font_fontconfig
}
|