blob: 44eaa13b2d7e0db2394ff504593498eb198e95aa (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/t1lib/t1lib-1.3.1.ebuild,v 1.29 2007/01/05 08:35:17 flameeyes Exp $
inherit eutils
IUSE="X"
DESCRIPTION="A Type 1 Font Rasterizer Library for UNIX/X11"
SRC_URI="mirror://gentoo/${P}.tar.gz"
HOMEPAGE="ftp://metalab.unc.edu/pub/Linux/libs/graphics"
RDEPEND="X? ( x11-libs/libXaw )"
DEPEND="${RDEPEND}"
SLOT="1"
LICENSE="LGPL-2 GPL-2"
KEYWORDS="x86 ppc sparc alpha hppa amd64 ~mips"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-asneeded.patch"
cd ${S}/doc
mv Makefile.in Makefile.in-orig
sed -e "s:dvips:#dvips:" Makefile.in-orig>Makefile.in
}
src_compile() {
local myconf
local myopt
use X \
&& myconf="--with-x" \
|| myconf="--without-x"
if [ ! -x /usr/bin/latex ] ; then
myopt="without_doc"
fi
echo `pwd`
econf ${myconf} || die
make ${myopt} || die
}
src_install() {
cd lib
insinto /usr/include
doins t1lib.h
use X && ( \
doins t1libx.h
ln -s -f libt1x.lai .libs/libt1x.la
dolib .libs/libt1x.{la,a,so.1.3.1}
dosym libt1x.so.1.3.1 /usr/$(get_libdir)/libt1x.so.1
dosym libt1x.so.1.3.1 /usr/$(get_libdir)/libt1x.so
)
ln -s -f libt1.lai .libs/libt1.la
dolib .libs/libt1.{la,a,so.1.3.1}
dosym libt1.so.1.3.1 /usr/$(get_libdir)/libt1.so.1
dosym libt1.so.1.3.1 /usr/$(get_libdir)/libt1.so
insinto /etc/t1lib
doins t1lib.config
cd ..
dodoc Changes LGPL LICENSE README*
cd doc
insinto /usr/share/doc/${PF}
doins *.pdf *.dvi
}
|