summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Longinotti <chtekk@gentoo.org>2007-05-30 15:47:27 +0000
committerLuca Longinotti <chtekk@gentoo.org>2007-05-30 15:47:27 +0000
commit2b941da03ddfdb5e612a50292b1f650c9950fe0f (patch)
treee1e28a29eaff1cd1cf5a936f5d00424d81a82686 /dev-php5/phpdbg
parentdepreciated -> deprecated. bug #180352 (diff)
downloadgentoo-2-2b941da03ddfdb5e612a50292b1f650c9950fe0f.tar.gz
gentoo-2-2b941da03ddfdb5e612a50292b1f650c9950fe0f.tar.bz2
gentoo-2-2b941da03ddfdb5e612a50292b1f650c9950fe0f.zip
Remove old version.
(Portage version: 2.1.2.7)
Diffstat (limited to 'dev-php5/phpdbg')
-rw-r--r--dev-php5/phpdbg/ChangeLog5
-rw-r--r--dev-php5/phpdbg/files/digest-phpdbg-2.15.13
-rw-r--r--dev-php5/phpdbg/phpdbg-2.15.1.ebuild52
3 files changed, 4 insertions, 56 deletions
diff --git a/dev-php5/phpdbg/ChangeLog b/dev-php5/phpdbg/ChangeLog
index 1c7d4551f251..d119df1065b8 100644
--- a/dev-php5/phpdbg/ChangeLog
+++ b/dev-php5/phpdbg/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-php5/phpdbg
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/phpdbg/ChangeLog,v 1.10 2007/05/28 19:01:46 anant Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/phpdbg/ChangeLog,v 1.11 2007/05/30 15:47:27 chtekk Exp $
+
+ 30 May 2007; Luca Longinotti <chtekk@gentoo.org> -phpdbg-2.15.1.ebuild:
+ Remove old version.
*phpdbg-2.15.5 (28 May 2007)
diff --git a/dev-php5/phpdbg/files/digest-phpdbg-2.15.1 b/dev-php5/phpdbg/files/digest-phpdbg-2.15.1
deleted file mode 100644
index cdcad8a828dd..000000000000
--- a/dev-php5/phpdbg/files/digest-phpdbg-2.15.1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 537277ae275f3320a1e2728dccd6635f dbg-2.15.1.tar.gz 252087
-RMD160 668218b20351bfe6dace63a0aee8f387a56d4926 dbg-2.15.1.tar.gz 252087
-SHA256 c6faf95cbaf68407b2282a31f7faa51071fe485209efbdef1c77524b93b79afd dbg-2.15.1.tar.gz 252087
diff --git a/dev-php5/phpdbg/phpdbg-2.15.1.ebuild b/dev-php5/phpdbg/phpdbg-2.15.1.ebuild
deleted file mode 100644
index 9a9497a4b595..000000000000
--- a/dev-php5/phpdbg/phpdbg-2.15.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/phpdbg/phpdbg-2.15.1.ebuild,v 1.2 2007/03/18 01:26:12 chtekk Exp $
-
-PHP_EXT_NAME="dbg"
-PHP_EXT_INI="yes"
-PHP_EXT_ZENDEXT="no"
-
-inherit php-ext-source-r1
-
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-
-DESCRIPTION="A PHP debugger useable with some editors like phpedit."
-HOMEPAGE="http://dd.cron.ru/dbg/"
-SRC_URI="mirror://sourceforge/dbg2/dbg-${PV}.tar.gz"
-LICENSE="dbgphp"
-SLOT="0"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-S="${WORKDIR}/dbg-${PV}"
-
-need_php_by_category
-
-pkg_setup() {
- has_php
-
- # phpdbg does not work with Zend Thread Safety (ZTS),
- # so abort if we're using PHP compiled with ZTS.
- if has_zts ; then
- eerror "phpdbg doesn't work with a ZTS enabled PHP."
- eerror "Please disable ZTS by turning the 'threads'"
- eerror "USE flag off when you compile dev-lang/php."
- die "phpdbg does not support ZTS"
- fi
-}
-
-src_compile() {
- my_conf="--enable-dbg=shared --with-dbg-profiler"
- php-ext-source-r1_src_compile
-}
-
-src_install() {
- php-ext-source-r1_src_install
- dodoc-php AUTHORS COPYING INSTALL
-
- php-ext-base-r1_addtoinifiles "[Debugger]"
- php-ext-base-r1_addtoinifiles "debugger.enabled" "on"
- php-ext-base-r1_addtoinifiles "debugger.profiler_enabled" "on"
-}