blob: 8ef6551a0bf700a381d1678548190e4ff901e7c6 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/artwiz-fonts/artwiz-fonts-2.4-r1.ebuild,v 1.8 2004/12/14 16:40:35 corsair Exp $
S=${WORKDIR}/xfonts-artwiz-2.3
DESCRIPTION="Artwiz Fonts"
SRC_URI="http://ftp.debian.org/debian/pool/main/x/xfonts-artwiz/xfonts-artwiz_${PV}.tar.gz"
HOMEPAGE="http://fluxbox.sourceforge.net/docs/artwiz-fonts.php"
SLOT=0
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips amd64 ppc64"
IUSE=""
DEPEND="virtual/x11
x11-misc/ttmkfdir"
src_compile() {
cd ${S}/upstream
for font in *.bdf; do
/usr/X11R6/bin/bdftopcf ${font} > `basename $font .bdf`.pcf
done
gzip *.pcf
}
src_install() {
cd ${S}/upstream
insopts -m0644
insinto /usr/share/fonts/artwiz/
doins *.pcf.gz
cd ${S}/debian
insopts -m0644
insinto /usr/share/fonts/artwiz/
doins fonts.alias
# These don't get downloaded because there is no simple way to
# fetch them.. ie if I included the README in SRC_URI above, it would
# get saved as /usr/portage/distfiles/README which doesn't seem like
# a really good idea.
dodoc ../COPYING
if [ -z "$(grep artwiz /etc/X11/fs/config)" ]
then
sed 's#^catalog.*$#&\n\t/usr/share/fonts/artwiz:unscaled,#g' \
/etc/X11/fs/config > ${S}/config
insinto /etc/X11/fs
doins config
fi
}
pkg_postinst() {
einfo ">>> Making font dirs..."
cd /usr/share/fonts/artwiz
mkfontdir
}
|