forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
culmus-latex-0.7.ebuild
37 lines (31 loc) · 972 Bytes
/
culmus-latex-0.7.ebuild
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
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="2"
inherit latex-package
DESCRIPTION="Culmus fonts support for latex"
HOMEPAGE="http://ivritex.sourceforge.net/"
SRC_URI="mirror://sourceforge/ivritex/${P}_src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
IUSE="examples"
RDEPEND="virtual/latex-base"
DEPEND="${RDEPEND}
>=media-fonts/culmus-0.110[fancy]
app-text/t1utils"
src_compile() {
emake CULMUSDIR=/usr/share/fonts/culmus/ || die "failed to build fonts"
echo "Map culmus.map" > ${PN}.cfg
}
src_install() {
emake CULMUSDIR=/usr/share/fonts/culmus/ DESTDIR="${D}" TEXMFROOT=/usr/share/texmf-site pkginstall || die "failed to install"
insinto /etc/texmf/updmap.d
doins ${PN}.cfg
dodoc README
if use examples ; then
insinto /usr/share/doc/${PF}/examples
doins examples/*
insinto /usr/share/doc/${PF}/examples/hiriq
doins examples/hiriq/*
fi
}