blob: f78ed1e39c32d76e14774bd19a6c6d14110da405 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-1.58-r1.ebuild,v 1.8 2006/08/06 01:34:29 mcummings Exp $
inherit perl-module eutils
DESCRIPTION="A Perl module to parse XSL Transformational sheets using gnome's libXSLT"
SRC_URI="mirror://cpan/authors/id/P/PH/PHISH/${P}.tar.gz"
HOMEPAGE="http://cpan.org/modules/by-module/XML/${P}.readme"
IUSE=""
SLOT="0"
LICENSE="Artistic"
KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
DEPEND=">=dev-perl/XML-SAX-0.12
dev-perl/XML-LibXML-Common
>=dev-libs/libxml2-2.6.6
>=dev-perl/XML-NamespaceSupport-1.07
dev-lang/perl"
RDEPEND="${DEPEND}"
SRC_TEST="do"
# rac can't discern any difference between the build with or without
# this, and if somebody wants to reactivate it, get it out of global
# scope.
#export PERL5LIB=`perl -e 'print map { ":$ENV{D}/$_" } @INC'`
mytargets="pure_install doc_install"
src_unpack() {
unpack ${A}
cd ${S}; epatch ${FILESDIR}/XML-LibXML-1.58-cleanup.patch
}
pkg_postinst() {
perl-module_pkg_postinst
perl -MXML::SAX \
-e "XML::SAX->add_parser(q(XML::LibXML::SAX::Parser))->save_parsers()"
}
|