blob: f7612d91c1f4ea537c2b4aa556085129ac1e8ef1 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-perl/GD/GD-2.01.ebuild,v 1.2 2002/09/10 01:55:54 mcummings Exp $
inherit perl-module
S=${WORKDIR}/${P}
CATEGORY="dev-perl"
DESCRIPTION="The Perl DBI Module"
SRC_URI="http://www.cpan.org/modules/by-module/GD/${P}.tar.gz"
HOMEPAGE="http://www.cpan.org/modules/by-module/GD/${P}.readme"
SLOT="0"
LICENSE="Artistic | GPL-2"
KEYWORDS="x86 ppc"
DEPEND="${DEPEND}
>=media-libs/libgd-2.0.1
X? ( virtual/x11 )"
src_unpack() {
unpack ${A}
cd ${S}
cp Makefile.PL Makefile.PL.orig
sed -e "s:my \$JPEG.*:my \$JPEG='y';:" \
-e "s:my \$TTF.*:my \$TTF='y';:" \
Makefile.PL.orig > Makefile.PL
use X && ( \
cp Makefile.PL Makefile.PL.orig
sed -e "s:my \$XPM.*:my \$XPM='y';:" \
Makefile.PL.orig > Makefile.PL
) || ( \
cp Makefile.PL Makefile.PL.orig
sed -e "s:my \$XPM.*:my \$XPM='n';:"\
Makefile.PL.orig > Makefile.PL
)
use truetype && ( \
cp Makefile.PL Makefile.PL.orig
sed -e "s:my \$FT.*:my \$FT='y';:"\
Makefile.PL.orig > Makefile.PL
) || ( \
cp Makefile.PL Makefile.PL.orig
sed -e "s:my \$FT.*:my \$FT='n';:"\
Makefile.PL.orig > Makefile.PL
)
}
src_install () {
perl-module_src_install
dohtml GD.html
}
|