diff options
Diffstat (limited to 'dev-perl/AxKit/AxKit-1.5.2-r1.ebuild')
-rw-r--r-- | dev-perl/AxKit/AxKit-1.5.2-r1.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-perl/AxKit/AxKit-1.5.2-r1.ebuild b/dev-perl/AxKit/AxKit-1.5.2-r1.ebuild new file mode 100644 index 000000000000..714dca616d2c --- /dev/null +++ b/dev-perl/AxKit/AxKit-1.5.2-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2002 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/AxKit/AxKit-1.5.2-r1.ebuild,v 1.1 2002/05/05 14:08:57 seemant Exp $ + +# Inherit functions from the perl-module.eclass +. /usr/portage/eclass/inherit.eclass || die +inherit perl-module + +S=${WORKDIR}/${PN}-1.52 +DESCRIPTION="The Apache AxKit Perl Module" +SRC_URI="http://xml.sergeant.org/download/${P}.tar.gz" +HOMEPAGE="http://xml.sergeant.org/" + +newdepend ">=sys-devel/perl-5 \ + >=dev-perl/libapreq-0.31 \ + >=dev-perl/Compress-Zlib-1.10 \ + >=dev-perl/Error-0.13 \ + >=dev-perl/HTTP-GHTTP-1.06 \ + >=dev-perl/Storable-1.0.7 \ + >=dev-perl/XML-XPath-1.04 \ + >=dev-perl/XML-XPath-1.04 \ + >=dev-perl/XML-LibXML-1.31 \ + >=dev-perl/XML-LibXSLT-1.31 \ + >=dev-perl/libapreq-1.0 \ + >=dev-perl/XML-Sablot-0.50" + +src_unpack() { + unpack ${A} + cd ${S} + cp Makefile.PL Makefile.PL.orig + sed -e "s:0\.31_03:0.31:" Makefile.PL.orig > Makefile.PL +} + +src_install () { + + base_src_install + + diropts -o nobody -g nogroup + dodir /var/cache/axkit + dodir /home/httpd/htdocs/xslt + insinto /etc/apache + doins ${FILESDIR}/httpd.axkit + +} |