blob: eae3ee89fa658ded095a23fce636f5b26077efe7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# 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/XML-SAX/XML-SAX-0.10-r1.ebuild,v 1.3 2002/07/11 06:30:23 drobbins Exp $
inherit perl-module
S=${WORKDIR}/${P}
DESCRIPTION="Perl module for using and building Perl SAX2 XML parsers, filters, and drivers"
SRC_URI="http://cpan.valueclick.com/modules/by-category/11_String_Lang_Text_Proc/XML/${P}.tar.gz"
HOMEPAGE="http://cpan.valueclick.com/modules/by-category/11_String_Lang_Text_Proc/XML/${P}.readme"
DEPEND="${DEPEND}
>=dev-perl/XML-NamespaceSupport-1.04
>=dev-libs/libxml2-2.4.1"
export PERL5LIB=`perl -e 'print map { ":$ENV{D}/$_" } @INC'`
src_compile() {
echo n |perl Makefile.PL
make || test
}
|