blob: 65928986bc21377a7d6432405df52ce96be257a6 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/culmus/culmus-0.101.ebuild,v 1.5 2006/07/11 12:53:47 agriffis Exp $
inherit font
DESCRIPTION="Hebrew Type1 fonts"
SRC_URI="mirror://sourceforge/culmus/${P}.tar.gz
http://culmus.sourceforge.net/fancy/dorian.tar.gz
http://culmus.sourceforge.net/fancy/gladia.tar.gz
http://culmus.sourceforge.net/fancy/ozrad.tar.gz
http://culmus.sourceforge.net/fancy/gan.tar.gz
http://culmus.sourceforge.net/fancy/comix.tar.gz
http://culmus.sourceforge.net/fancy/ktav-yad.tar.gz"
HOMEPAGE="http://culmus.sourceforge.net/"
KEYWORDS="alpha ~amd64 ia64 ~ppc sparc ~x86"
SLOT="0"
LICENSE="|| ( GPL-2 LICENSE-BITSTREAM )"
IUSE=""
FONT_SUFFIX="afm pfa"
DOCS="CHANGES LICENSE LICENSE-BITSTREAM"
src_unpack() {
unpack ${A}
mv *.{afm,pfa} ${S}
}
src_install () {
font_src_install
insinto /usr/share/fonts/${PN}
doins *.conf
}
pkg_postinst() {
einfo "Please add ${FONTPATH} to your FontPath"
einfo "in XF86Config to make the fonts available to all X11 apps and"
einfo "not just those that use fontconfig (the latter category includes"
einfo "kde 3.1 and gnome 2.2)."
}
|