blob: 1e7c2d4feaabf6fb62e034d5e3fe2e54eeffc896 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/gtk-perl/gtk-perl-0.7008-r6.ebuild,v 1.3 2002/11/05 23:28:49 seemant Exp $
inherit perl-module
MY_P=Gtk-Perl-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Perl bindings for GTK"
SRC_URI="http://www.gtkperl.org/${MY_P}.tar.gz"
HOMEPAGE="http://www.perl.org/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc sparc64 alpha"
DEPEND="${DEPEND}
media-libs/gdk-pixbuf
=x11-libs/gtk+-1.2*
dev-perl/XML-Writer
dev-perl/XML-Parser
gnome? ( gnome-base/gnome-libs )"
mydoc="VERSIONS WARNING NOTES"
use gnome || (myconf="${myconf} --without-module gnome --without-module gnomeprint")
src_compile() {
cd ${S}
cp Makefile.PL Makefile.PL.bak
perl -pi -e '/CCMD/ && s|/m;|/mg;|' */Makefile.PL
perl-module_src_compile
}
|