diff options
author | Ole Markus With <olemarkus@gentoo.org> | 2012-03-01 16:56:21 +0000 |
---|---|---|
committer | Ole Markus With <olemarkus@gentoo.org> | 2012-03-01 16:56:21 +0000 |
commit | 2ef97dc48bd4fd77a77ea3eaad051ec0d381fbe6 (patch) | |
tree | 90dbac97156419b783e7981f4fc01ec931e72095 /dev-php/pecl-htscanner | |
parent | Version bump bsddb3 to 5.3.0 for bug 404161. (diff) | |
download | gentoo-2-2ef97dc48bd4fd77a77ea3eaad051ec0d381fbe6.tar.gz gentoo-2-2ef97dc48bd4fd77a77ea3eaad051ec0d381fbe6.tar.bz2 gentoo-2-2ef97dc48bd4fd77a77ea3eaad051ec0d381fbe6.zip |
Version bump
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Diffstat (limited to 'dev-php/pecl-htscanner')
-rw-r--r-- | dev-php/pecl-htscanner/ChangeLog | 8 | ||||
-rw-r--r-- | dev-php/pecl-htscanner/pecl-htscanner-1.0.1.ebuild | 34 |
2 files changed, 41 insertions, 1 deletions
diff --git a/dev-php/pecl-htscanner/ChangeLog b/dev-php/pecl-htscanner/ChangeLog index a420d7e555c0..07535ee92856 100644 --- a/dev-php/pecl-htscanner/ChangeLog +++ b/dev-php/pecl-htscanner/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-php/pecl-htscanner # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-htscanner/ChangeLog,v 1.2 2012/01/15 16:54:14 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-htscanner/ChangeLog,v 1.3 2012/03/01 16:56:21 olemarkus Exp $ + +*pecl-htscanner-1.0.1 (01 Mar 2012) + + 01 Mar 2012; Ole Markus With <olemarkus@gentoo.org> + +pecl-htscanner-1.0.1.ebuild: + Version bump 15 Jan 2012; Ole Markus With <olemarkus@gentoo.org> -pecl-htscanner-0.9.0-r1.ebuild: diff --git a/dev-php/pecl-htscanner/pecl-htscanner-1.0.1.ebuild b/dev-php/pecl-htscanner/pecl-htscanner-1.0.1.ebuild new file mode 100644 index 000000000000..4e069da0583a --- /dev/null +++ b/dev-php/pecl-htscanner/pecl-htscanner-1.0.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-htscanner/pecl-htscanner-1.0.1.ebuild,v 1.1 2012/03/01 16:56:21 olemarkus Exp $ + +EAPI="4" + +PHP_EXT_NAME="htscanner" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="no" +DOCS="README" +PHPSAPILIST="cgi" + +inherit php-ext-pecl-r2 + +KEYWORDS="~amd64 ~x86" + +DESCRIPTION="Enables .htaccess options for php-scripts running as cgi." +LICENSE="PHP-3" +SLOT="0" +IUSE="" + +DEPEND="dev-lang/php[cgi]" +RDEPEND="${DEPEND}" + +my_conf="--enable-htscanner" + +src_install() { + php-ext-pecl-r2_src_install + + php-ext-source-r2_addtoinifiles "config_file" ".htaccess" + php-ext-source-r2_addtoinifiles "default_docroot" "/" + php-ext-source-r2_addtoinifiles "default_ttl" "300" + php-ext-source-r2_addtoinifiles "stop_on_error" "0" +} |