diff options
author | Ole Markus With <olemarkus@gentoo.org> | 2012-02-18 14:15:06 +0000 |
---|---|---|
committer | Ole Markus With <olemarkus@gentoo.org> | 2012-02-18 14:15:06 +0000 |
commit | fe32b8bb37a707374f52a65b7f9c5f5f3285ae48 (patch) | |
tree | a0d7e370011589ba031e9438398cfc52427b85c3 /dev-php | |
parent | Cleanup (diff) | |
download | gentoo-2-fe32b8bb37a707374f52a65b7f9c5f5f3285ae48.tar.gz gentoo-2-fe32b8bb37a707374f52a65b7f9c5f5f3285ae48.tar.bz2 gentoo-2-fe32b8bb37a707374f52a65b7f9c5f5f3285ae48.zip |
Committing initial ebuild, version 0.3.0
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/pecl-taint/ChangeLog | 10 | ||||
-rw-r--r-- | dev-php/pecl-taint/metadata.xml | 9 | ||||
-rw-r--r-- | dev-php/pecl-taint/pecl-taint-0.3.0.ebuild | 21 |
3 files changed, 40 insertions, 0 deletions
diff --git a/dev-php/pecl-taint/ChangeLog b/dev-php/pecl-taint/ChangeLog new file mode 100644 index 000000000000..7024b048b13e --- /dev/null +++ b/dev-php/pecl-taint/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-php/pecl-taint +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-taint/ChangeLog,v 1.1 2012/02/18 14:15:06 olemarkus Exp $ + +*pecl-taint-0.3.0 (18 Feb 2012) + + 18 Feb 2012; Ole Markus With <olemarkus@gentoo.org> +metadata.xml, + +pecl-taint-0.3.0.ebuild: + Committing initial ebuild, version 0.3.0 + diff --git a/dev-php/pecl-taint/metadata.xml b/dev-php/pecl-taint/metadata.xml new file mode 100644 index 000000000000..f19192292abd --- /dev/null +++ b/dev-php/pecl-taint/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>php</herd> + <longdescription lang="en"> + Extension used for detecting XSS codes(tainted string) + </longdescription> +</pkgmetadata> + diff --git a/dev-php/pecl-taint/pecl-taint-0.3.0.ebuild b/dev-php/pecl-taint/pecl-taint-0.3.0.ebuild new file mode 100644 index 000000000000..bbb49e9118fb --- /dev/null +++ b/dev-php/pecl-taint/pecl-taint-0.3.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-taint/pecl-taint-0.3.0.ebuild,v 1.1 2012/02/18 14:15:06 olemarkus Exp $ + +EAPI=4 + +USE_PHP="php5-3 php5-4" + +inherit php-ext-pecl-r2 + +DESCRIPTION="Extension used for detecting XSS codes(tainted string)" +LICENSE="PHP-3.01" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +pkg_postinst() { + elog 'In order to enable this extension, add' + elog ' taint.enable=1' + elog 'to /etc/php/<sapi>-<slot>/ext/taint.ini' +} |