diff options
author | Stuart Herbert <stuart@gentoo.org> | 2005-09-04 16:01:22 +0000 |
---|---|---|
committer | Stuart Herbert <stuart@gentoo.org> | 2005-09-04 16:01:22 +0000 |
commit | 3d3d12a4ed9e1c9c4b38f79da6349f5ac4ae3839 (patch) | |
tree | 36cf01b59ab33460a5bfc7ea5964c1458c93aef2 /dev-php4/pecl-tidy | |
parent | New release: 0.3.3 (diff) | |
download | gentoo-2-3d3d12a4ed9e1c9c4b38f79da6349f5ac4ae3839.tar.gz gentoo-2-3d3d12a4ed9e1c9c4b38f79da6349f5ac4ae3839.tar.bz2 gentoo-2-3d3d12a4ed9e1c9c4b38f79da6349f5ac4ae3839.zip |
Initial import for PHP4
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-php4/pecl-tidy')
-rw-r--r-- | dev-php4/pecl-tidy/ChangeLog | 7 | ||||
-rw-r--r-- | dev-php4/pecl-tidy/Manifest | 4 | ||||
-rw-r--r-- | dev-php4/pecl-tidy/files/digest-pecl-tidy-1.1 | 1 | ||||
-rw-r--r-- | dev-php4/pecl-tidy/metadata.xml | 5 | ||||
-rw-r--r-- | dev-php4/pecl-tidy/pecl-tidy-1.1.ebuild | 27 |
5 files changed, 44 insertions, 0 deletions
diff --git a/dev-php4/pecl-tidy/ChangeLog b/dev-php4/pecl-tidy/ChangeLog new file mode 100644 index 000000000000..cd70c052eef6 --- /dev/null +++ b/dev-php4/pecl-tidy/ChangeLog @@ -0,0 +1,7 @@ +# ChangeLog for dev-php4/pecl-tidy +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php4/pecl-tidy/ChangeLog,v 1.1 2005/09/04 15:56:33 stuart Exp $ + + 18 Aug 2005; <stuart@gentoo.org> ChangeLog: + Initial version; replaces older dev-php/* packages + diff --git a/dev-php4/pecl-tidy/Manifest b/dev-php4/pecl-tidy/Manifest new file mode 100644 index 000000000000..7d57e1b00efb --- /dev/null +++ b/dev-php4/pecl-tidy/Manifest @@ -0,0 +1,4 @@ +MD5 c58d07ca1c1235bbad9bccaec96fc062 metadata.xml 157 +MD5 573cdfcac99f3dd76cb1ed9827c270e5 ChangeLog 219 +MD5 6178f6642ac603e0824a599091220313 pecl-tidy-1.1.ebuild 500 +MD5 d83ea8c3886577c14d5dec3608e13d78 files/digest-pecl-tidy-1.1 55 diff --git a/dev-php4/pecl-tidy/files/digest-pecl-tidy-1.1 b/dev-php4/pecl-tidy/files/digest-pecl-tidy-1.1 new file mode 100644 index 000000000000..282bd1f58a02 --- /dev/null +++ b/dev-php4/pecl-tidy/files/digest-pecl-tidy-1.1 @@ -0,0 +1 @@ +MD5 ecb2d3c62e1d720265a65dfb7e00e081 tidy-1.1.tgz 9128 diff --git a/dev-php4/pecl-tidy/metadata.xml b/dev-php4/pecl-tidy/metadata.xml new file mode 100644 index 000000000000..fd3dbe39fa64 --- /dev/null +++ b/dev-php4/pecl-tidy/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-tidy/pecl-tidy-1.1.ebuild b/dev-php4/pecl-tidy/pecl-tidy-1.1.ebuild new file mode 100644 index 000000000000..569c0e645563 --- /dev/null +++ b/dev-php4/pecl-tidy/pecl-tidy-1.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php4/pecl-tidy/pecl-tidy-1.1.ebuild,v 1.1 2005/09/04 15:56:33 stuart Exp $ + +PHP_EXT_ZENDEXT="no" +PHP_EXT_PECL_PKG="tidy" +PHP_EXT_NAME="tidy" +PHP_EXT_INI="yes" + +inherit php-ext-pecl-r1 + +DESCRIPTION="Tidy is a binding for the Tidy HTML clean and repair utility." +LICENSE="PHP" +SLOT="0" +KEYWORDS="~ppc ~x86" +IUSE="" + +DEPEND="${DEPEND} + app-text/htmltidy" + +need_php_by_category + +src_compile() { + has_php + my_conf="--with-tidy" + php-ext-pecl-r1_src_compile +} |