blob: 1c0287528b61fbad99453ae53faea48b3c55b8b3 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/dev-perl/gtk-perl/gtk-perl-0.7000-r1.ebuild,v 1.5 2000/11/03 17:47:44 achim Exp $
P=gtk-perl-0.7000
A=Gtk-Perl-0.7000.tar.gz
S=${WORKDIR}/Gtk-Perl-0.7000
DESCRIPTION="Perl bindings for GTK"
SRC_URI="ftp://ftp.rz.ruhr-uni-bochum.de/pub/CPAN/authors/id/K/KJ/KJALB/"${A}
HOEMPAGE="http://www.perl.org/"
DEPEND=">=x11-libs/gtk+-1.2.8"
src_unpack() {
unpack ${A}
}
src_compile() {
cd ${S}
perl Makefile.PL $PERLINSTALL
try make
}
src_install() {
cd ${S}
echo $PERLINSTALL
try make prefix=${D}/usr install
prepman
dodoc ChangeLog MANIFEST NOTES README VERSIONS WARNING
}
|