blob: 563408dbee2336e9dfadc3851c3fffbc2d17c8b5 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Tools Team <tools@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/dev-perl/gtk-perl-glade/gtk-perl-glade-0.7004-r1.ebuild,v 1.3 2002/05/06 23:28:26 seemant Exp $
S=${WORKDIR}/Gtk-Perl-${PV}
DESCRIPTION="Perl bindings for GTK"
SRC_URI="ftp://ftp.rz.ruhr-uni-bochum.de/pub/CPAN/authors/id/L/LU/LUPUS/Gtk-Perl-${PV}.tar.gz"
HOEMPAGE="http://www.perl.org/"
DEPEND="sys-devel/perl >=dev-perl/gtk-perl-${PV} dev-util/glade"
src_compile() {
perl Makefile.PL
emake || die
cd Glade
perl Makefile.PL
emake || die
}
src_install() {
cd Glade
make PREFIX=${D}/usr INSTALLMAN3DIR=${D}/usr/share/man/man3 install || die
}
|