diff options
Diffstat (limited to 'dev-php/PEAR-XML_XPath/PEAR-XML_XPath-1.2.ebuild')
-rw-r--r-- | dev-php/PEAR-XML_XPath/PEAR-XML_XPath-1.2.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-php/PEAR-XML_XPath/PEAR-XML_XPath-1.2.ebuild b/dev-php/PEAR-XML_XPath/PEAR-XML_XPath-1.2.ebuild new file mode 100644 index 000000000000..5aa63878d986 --- /dev/null +++ b/dev-php/PEAR-XML_XPath/PEAR-XML_XPath-1.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# Authore: Tom von Schwerdtner <tvon@etria.org> +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-XML_XPath/PEAR-XML_XPath-1.2.ebuild,v 1.1 2002/07/16 09:17:11 rphillips Exp $ + +P=${PN/PEAR-//}-${PV} +DESCRIPTION="The PEAR::XML_XPath class provided an XPath/DOM XML manipulation, maneuvering and query interface" +HOMEPAGE="http://pear.php.net/package-info.php?pacid=65" +SRC_URI="http://pear.php.net/get/${P}.tgz" +LICENSE="PHP" +SLOT="0" +# Afaik, anything that runs php will run this... +KEYWORDS="x86 ppc sparc" +DEPEND="virtual/php" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${P} + +src_install () { + insinto /usr/lib/php/XML + doins XPath.php + insinto /usr/lib/php/XML/XPath/ + doins XPath/* +} + +pkg_postinst () { + einfo + einfo "NOTE: This package requires the domxml extension." + einfo "To enable domxml, add xml2 to your USE settings" + einfo "and re-merge php." + einfo +} |