diff options
Diffstat (limited to 'dev-php4')
-rw-r--r-- | dev-php4/pecl-apd/ChangeLog | 10 | ||||
-rw-r--r-- | dev-php4/pecl-apd/Manifest | 4 | ||||
-rw-r--r-- | dev-php4/pecl-apd/files/digest-pecl-apd-0.9.2 | 1 | ||||
-rw-r--r-- | dev-php4/pecl-apd/metadata.xml | 5 | ||||
-rw-r--r-- | dev-php4/pecl-apd/pecl-apd-0.9.2.ebuild | 25 |
5 files changed, 45 insertions, 0 deletions
diff --git a/dev-php4/pecl-apd/ChangeLog b/dev-php4/pecl-apd/ChangeLog new file mode 100644 index 000000000000..cd6bb52272c2 --- /dev/null +++ b/dev-php4/pecl-apd/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-php4/pecl-apd +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php4/pecl-apd/ChangeLog,v 1.1 2005/09/18 13:55:15 hollow Exp $ + +*pecl-apd-0.9.2 (18 Sep 2005) + + 18 Sep 2005; Benedikt Boehm <hollow@gentoo.org> +metadata.xml, + +pecl-apd-0.9.2.ebuild: + initial version + diff --git a/dev-php4/pecl-apd/Manifest b/dev-php4/pecl-apd/Manifest new file mode 100644 index 000000000000..717dce2ff5c5 --- /dev/null +++ b/dev-php4/pecl-apd/Manifest @@ -0,0 +1,4 @@ +MD5 c58d07ca1c1235bbad9bccaec96fc062 metadata.xml 157 +MD5 a7a75807677afccb8180d7d45e318874 pecl-apd-0.9.2.ebuild 501 +MD5 1b12210cc8efd3cfc5463132dc8c2b25 ChangeLog 259 +MD5 ab22b4ee784597a319c8c74368918d1c files/digest-pecl-apd-0.9.2 57 diff --git a/dev-php4/pecl-apd/files/digest-pecl-apd-0.9.2 b/dev-php4/pecl-apd/files/digest-pecl-apd-0.9.2 new file mode 100644 index 000000000000..9fe5e8617937 --- /dev/null +++ b/dev-php4/pecl-apd/files/digest-pecl-apd-0.9.2 @@ -0,0 +1 @@ +MD5 8e22148a642a9eb8c8b4c062c8d50ef0 apd-0.9.2.tgz 36989 diff --git a/dev-php4/pecl-apd/metadata.xml b/dev-php4/pecl-apd/metadata.xml new file mode 100644 index 000000000000..fd3dbe39fa64 --- /dev/null +++ b/dev-php4/pecl-apd/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>php</herd> +</pkgmetadata> diff --git a/dev-php4/pecl-apd/pecl-apd-0.9.2.ebuild b/dev-php4/pecl-apd/pecl-apd-0.9.2.ebuild new file mode 100644 index 000000000000..174303902c2d --- /dev/null +++ b/dev-php4/pecl-apd/pecl-apd-0.9.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php4/pecl-apd/pecl-apd-0.9.2.ebuild,v 1.1 2005/09/18 13:55:15 hollow Exp $ + +PHP_EXT_ZENDEXT="yes" +PHP_EXT_PECL_PKG="apd" +PHP_EXT_NAME="apd" +PHP_EXT_INI="yes" + +inherit php-ext-pecl-r1 + +IUSE="" +DESCRIPTION="A full-featured engine-level profiler/debugger." +SLOT="0" +LICENSE="PHP" +KEYWORDS="~x86" + +need_php_by_category + +src_install () { + sed -i 's:/usr/local:/usr:g' ${S}/pprofp || die #83612 + php-ext-pecl-r1_src_install + dobin pprofp + dodoc LICENSE README +} |