summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOle Markus With <olemarkus@gentoo.org>2012-08-25 08:23:45 +0000
committerOle Markus With <olemarkus@gentoo.org>2012-08-25 08:23:45 +0000
commit71e615b887ddde6b3cdfdf99b8b6c8e68f9a6544 (patch)
tree082e0bca4784ff168449191eb62a3d72cafd84c4 /dev-php/suhosin
parentReadding suhosin-0.9.33.ebuild. Was removed by a mistake (diff)
downloadgentoo-2-71e615b887ddde6b3cdfdf99b8b6c8e68f9a6544.tar.gz
gentoo-2-71e615b887ddde6b3cdfdf99b8b6c8e68f9a6544.tar.bz2
gentoo-2-71e615b887ddde6b3cdfdf99b8b6c8e68f9a6544.zip
Removing the file that is actually older
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'dev-php/suhosin')
-rw-r--r--dev-php/suhosin/ChangeLog6
-rw-r--r--dev-php/suhosin/suhosin-0.9.32.1-r2.ebuild56
2 files changed, 5 insertions, 57 deletions
diff --git a/dev-php/suhosin/ChangeLog b/dev-php/suhosin/ChangeLog
index 0be21d76615d..6fc086772554 100644
--- a/dev-php/suhosin/ChangeLog
+++ b/dev-php/suhosin/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-php/suhosin
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/suhosin/ChangeLog,v 1.11 2012/08/25 08:22:22 olemarkus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/suhosin/ChangeLog,v 1.12 2012/08/25 08:23:45 olemarkus Exp $
+
+ 25 Aug 2012; Ole Markus With <olemarkus@gentoo.org>
+ -suhosin-0.9.32.1-r2.ebuild, suhosin-0.9.33.ebuild:
+ Removing the file that is actually older
*suhosin-0.9.33 (25 Aug 2012)
diff --git a/dev-php/suhosin/suhosin-0.9.32.1-r2.ebuild b/dev-php/suhosin/suhosin-0.9.32.1-r2.ebuild
deleted file mode 100644
index 3d2574961262..000000000000
--- a/dev-php/suhosin/suhosin-0.9.32.1-r2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/suhosin/suhosin-0.9.32.1-r2.ebuild,v 1.1 2011/09/18 10:32:18 olemarkus Exp $
-
-EAPI="2"
-
-PHP_EXT_NAME="suhosin"
-PHP_EXT_INI="yes"
-PHP_EXT_ZENDEXT="no"
-
-inherit php-ext-source-r2
-
-KEYWORDS="alpha amd64 arm hppa ia64 ~ppc ~ppc64 s390 sh sparc x86"
-
-DESCRIPTION="Suhosin is an advanced protection system for PHP installations."
-HOMEPAGE="http://www.suhosin.org/"
-SRC_URI="http://download.suhosin.org/${P}.tar.gz"
-LICENSE="PHP-3"
-SLOT="0"
-IUSE=""
-
-DEPEND="dev-lang/php[unicode]"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- local slot
- for slot in $(php_get_slots); do
- php_init_slot_env ${slot}
- epatch "${FILESDIR}"/${P}-libcrypt.patch
- done
- php-ext-source-r2_src_prepare
-}
-
-src_install() {
- php-ext-source-r2_src_install
- dodoc CREDITS
-
- local slot
- for slot in $(php_get_slots); do
- php_init_slot_env ${slot}
- for inifile in ${PHPINIFILELIST} ; do
- insinto "${inifile/${PHP_EXT_NAME}.ini/}"
- insopts -m644
- doins "suhosin.ini"
- done
- done
-}
-
-src_test() {
- # Makefile passes a hard-coded -d extension_dir=./modules, we move the lib
- # away from there in src_compile
- for slot in `php_get_slots`; do
- php_init_slot_env ${slot}
- NO_INTERACTION="yes" emake test || die "emake test failed for slot ${slot}"
- done
-}