diff options
author | Markus Ullmann <jokey@gentoo.org> | 2007-09-06 16:10:28 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2007-09-06 16:10:28 +0000 |
commit | 4bc8913001ae305f71c05f7e5c8c50421edfa35d (patch) | |
tree | 41c386553d3cb02bbe7356b1ac1d8d0ee1d4fb35 | |
parent | fixing bug #191391 (diff) | |
download | historical-4bc8913001ae305f71c05f7e5c8c50421edfa35d.tar.gz historical-4bc8913001ae305f71c05f7e5c8c50421edfa35d.tar.bz2 historical-4bc8913001ae305f71c05f7e5c8c50421edfa35d.zip |
Cleanup
Package-Manager: portage-2.1.3.7
40 files changed, 53 insertions, 613 deletions
diff --git a/dev-php5/jpgraph/ChangeLog b/dev-php5/jpgraph/ChangeLog index e2db30f6ddaf..76630a5b359f 100644 --- a/dev-php5/jpgraph/ChangeLog +++ b/dev-php5/jpgraph/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-php5/jpgraph # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/jpgraph/ChangeLog,v 1.20 2007/08/31 09:38:43 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/jpgraph/ChangeLog,v 1.21 2007/09/06 16:03:57 jokey Exp $ + + 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> -jpgraph-2.1.4.ebuild: + Cleanup *jpgraph-2.2 (31 Aug 2007) diff --git a/dev-php5/jpgraph/files/digest-jpgraph-2.1.4 b/dev-php5/jpgraph/files/digest-jpgraph-2.1.4 deleted file mode 100644 index 5322f357aa72..000000000000 --- a/dev-php5/jpgraph/files/digest-jpgraph-2.1.4 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 2146fa93269cf4203e26296fb04167f3 jpgraph-2.1.4.tar.gz 4480770 -RMD160 ebc554950310083c35e347c9fb746b130181bf8b jpgraph-2.1.4.tar.gz 4480770 -SHA256 26bbed9eb07a411d9388b6be5813054b21214f279178dba28ae4337d43707da9 jpgraph-2.1.4.tar.gz 4480770 diff --git a/dev-php5/jpgraph/jpgraph-2.1.4.ebuild b/dev-php5/jpgraph/jpgraph-2.1.4.ebuild deleted file mode 100644 index 95f5c70fb654..000000000000 --- a/dev-php5/jpgraph/jpgraph-2.1.4.ebuild +++ /dev/null @@ -1,82 +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/jpgraph/jpgraph-2.1.4.ebuild,v 1.2 2007/07/29 16:54:25 phreak Exp $ - -inherit php-lib-r1 - -KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86" - -DESCRIPTION="Fully OO graph drawing library for PHP." -HOMEPAGE="http://www.aditus.nu/jpgraph/" -SRC_URI="http://hem.bredband.net/jpgraph2/${P}.tar.gz" -LICENSE="QPL-1.0" -SLOT="0" -IUSE="truetype" - -DEPEND="" -RDEPEND="truetype? ( media-fonts/corefonts )" - -need_php_by_category - -[[ -z "${JPGRAPH_CACHEDIR}" ]] && JPGRAPH_CACHEDIR="/var/cache/jpgraph-php5/" - -pkg_setup() { - has_php - - # we need the PHP GD functionality - require_gd - - # check to wich user:group the cache dir will go - if has_version "www-servers/apache" ; then - HTTPD_USER="apache" - HTTPD_GROUP="apache" - einfo "Configuring ${JPGRAPH_CACHEDIR} for Apache." - else - HTTPD_USER="root" - HTTPD_GROUP="root" - ewarn "No Apache webserver detected - ${JPGRAPH_CACHEDIR} will be" - ewarn "owned by ${HTTPD_USER}:${HTTPD_GROUP} instead." - fi -} - -src_install() { - # some patches to adapt the config to Gentoo - einfo "Patching jpg-config.inc.php" - - # patch 1: - # make jpgraph use the correct group for file permissions - - sed -i "s|^DEFINE(\"CACHE_FILE_GROUP\",\"wwwadmin\");|DEFINE(\"CACHE_FILE_GROUP\",\"${HTTPD_GROUP}\");|" src/jpg-config.inc.php - - # patch 2: - # make jpgraph use the correct directory for caching - - sed -i "s|.*DEFINE(\"CACHE_DIR\",\"/tmp/jpgraph_cache/\");|DEFINE(\"CACHE_DIR\",\"${JPGRAPH_CACHEDIR}\");|" src/jpg-config.inc.php - - # patch 3: - # make jpgraph use the correct directory for the corefonts if the truetype USE flag is set - - if use truetype ; then - sed -i "s|.*DEFINE(\"TTF_DIR\",\"/usr/X11R6/lib/X11/fonts/truetype/\");|DEFINE(\"TTF_DIR\",\"/usr/share/fonts/corefonts/\");|" src/jpg-config.inc.php - fi - - # patch 4: - # disable READ_CACHE in jpgraph - - sed -i "s|^DEFINE(\"READ_CACHE\",true);|DEFINE(\"READ_CACHE\",false);|" src/jpg-config.inc.php - - # install php files - einfo "Building list of files to install" - php-lib-r1_src_install src `cd src ; find . -type f -print` - - # install documentation - einfo "Installing documentation" - dodoc-php README QPL.txt - dohtml -r docs/* - - # setup the cache dir - einfo "Setting up the cache dir" - keepdir "${JPGRAPH_CACHEDIR}" - fowners ${HTTPD_USER}:${HTTPD_GROUP} "${JPGRAPH_CACHEDIR}" - fperms 750 "${JPGRAPH_CACHEDIR}" -} diff --git a/dev-php5/pecl-apc/ChangeLog b/dev-php5/pecl-apc/ChangeLog index 3b46d330c126..dff8aa4bf922 100644 --- a/dev-php5/pecl-apc/ChangeLog +++ b/dev-php5/pecl-apc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-php5/pecl-apc # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-apc/ChangeLog,v 1.25 2007/06/30 17:23:32 voxus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-apc/ChangeLog,v 1.26 2007/09/06 16:04:19 jokey Exp $ + + 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> -pecl-apc-3.0.13.ebuild: + Cleanup *pecl-apc-3.0.14 (30 Jun 2007) diff --git a/dev-php5/pecl-apc/files/digest-pecl-apc-3.0.13 b/dev-php5/pecl-apc/files/digest-pecl-apc-3.0.13 deleted file mode 100644 index aa4f4fa8cd83..000000000000 --- a/dev-php5/pecl-apc/files/digest-pecl-apc-3.0.13 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 69f2678bc8d4fabbfd23573e2aa32f50 APC-3.0.13.tgz 105042 -RMD160 b11aec06842d28d9870f8359338e623ded60bdd1 APC-3.0.13.tgz 105042 -SHA256 f71538b262780790bf012335d92f7dec4869454a56d3a9f9691a55e9b6071e1a APC-3.0.13.tgz 105042 diff --git a/dev-php5/pecl-apc/pecl-apc-3.0.13.ebuild b/dev-php5/pecl-apc/pecl-apc-3.0.13.ebuild deleted file mode 100644 index 94ad0b7df9c8..000000000000 --- a/dev-php5/pecl-apc/pecl-apc-3.0.13.ebuild +++ /dev/null @@ -1,67 +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/pecl-apc/pecl-apc-3.0.13.ebuild,v 1.3 2007/05/12 14:30:48 chtekk Exp $ - -PHP_EXT_NAME="apc" -PHP_EXT_PECL_PKG="APC" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" - -inherit php-ext-pecl-r1 confutils - -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" - -DESCRIPTION="A free, open, and robust framework for caching and optimizing PHP code." -LICENSE="PHP" -SLOT="0" -IUSE="mmap" - -DEPEND="!dev-php5/eaccelerator !dev-php5/xcache" -RDEPEND="${DEPEND}" - -need_php_by_category - -pkg_setup() { - has_php - require_php_sapi_from cgi apache2 -} - -src_compile() { - has_php - - my_conf="--enable-apc" - enable_extension_enable "apc-mmap" "mmap" 0 - enable_extension_with_built_with =${PHP_PKG} apache2 apxs /usr/sbin/apxs2 "optimisation for apache2" - - php-ext-pecl-r1_src_compile -} - -src_install() { - php-ext-pecl-r1_src_install - dodoc-php CHANGELOG INSTALL LICENSE NOTICE - - php-ext-base-r1_addtoinifiles "apc.enabled" '"1"' - php-ext-base-r1_addtoinifiles "apc.shm_segments" '"1"' - php-ext-base-r1_addtoinifiles "apc.shm_size" '"30"' - php-ext-base-r1_addtoinifiles "apc.optimization" '"0"' - php-ext-base-r1_addtoinifiles "apc.num_files_hint" '"1024"' - php-ext-base-r1_addtoinifiles "apc.ttl" '"7200"' - php-ext-base-r1_addtoinifiles "apc.user_ttl" '"7200"' - php-ext-base-r1_addtoinifiles "apc.gc_ttl" '"3600"' - php-ext-base-r1_addtoinifiles "apc.cache_by_default" '"1"' - php-ext-base-r1_addtoinifiles ";apc.mmap_file_mask" '"/tmp/apcphp5.XXXXXX"' - php-ext-base-r1_addtoinifiles "apc.file_update_protection" '"2"' - php-ext-base-r1_addtoinifiles "apc.enable_cli" '"0"' - php-ext-base-r1_addtoinifiles "apc.max_file_size" '"1M"' - php-ext-base-r1_addtoinifiles "apc.stat" '"1"' - php-ext-base-r1_addtoinifiles "apc.write_lock" '"1"' - - dodir "${PHP_EXT_SHARED_DIR}" - insinto "${PHP_EXT_SHARED_DIR}" - doins apc.php -} - -pkg_postinst() { - elog "The apc.php file shipped with this release of PECL-APC was" - elog "installed into ${ROOT}usr/share/php5/apc/." -} diff --git a/dev-php5/pecl-fileinfo/ChangeLog b/dev-php5/pecl-fileinfo/ChangeLog index d175109e506a..13e07f7bb04f 100644 --- a/dev-php5/pecl-fileinfo/ChangeLog +++ b/dev-php5/pecl-fileinfo/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-php5/pecl-fileinfo # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-fileinfo/ChangeLog,v 1.20 2007/06/01 17:11:58 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-fileinfo/ChangeLog,v 1.21 2007/09/06 16:04:49 jokey Exp $ + + 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> + -pecl-fileinfo-1.0.3.ebuild: + Cleanup 01 Jun 2007; nixnut <nixnut@gentoo.org> pecl-fileinfo-1.0.4.ebuild: Stable on ppc wrt bug 176542 diff --git a/dev-php5/pecl-fileinfo/files/digest-pecl-fileinfo-1.0.3 b/dev-php5/pecl-fileinfo/files/digest-pecl-fileinfo-1.0.3 deleted file mode 100644 index c8f2c8dd46d7..000000000000 --- a/dev-php5/pecl-fileinfo/files/digest-pecl-fileinfo-1.0.3 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 799930038f76af23e391eef45789c607 Fileinfo-1.0.3.tgz 5727 -RMD160 9f2dc45ca312ddcb188aced69382d07901fb32f3 Fileinfo-1.0.3.tgz 5727 -SHA256 560dc4f40f33ef929c3be558c9550f88e22a673fa6467499b6e77ee6cc52315e Fileinfo-1.0.3.tgz 5727 diff --git a/dev-php5/pecl-fileinfo/pecl-fileinfo-1.0.3.ebuild b/dev-php5/pecl-fileinfo/pecl-fileinfo-1.0.3.ebuild deleted file mode 100644 index dcc44e488c95..000000000000 --- a/dev-php5/pecl-fileinfo/pecl-fileinfo-1.0.3.ebuild +++ /dev/null @@ -1,22 +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/pecl-fileinfo/pecl-fileinfo-1.0.3.ebuild,v 1.10 2007/03/07 18:08:43 chtekk Exp $ - -PHP_EXT_NAME="fileinfo" -PHP_EXT_PECL_PKG="Fileinfo" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" - -inherit php-ext-pecl-r1 - -KEYWORDS="amd64 hppa ppc ppc64 sparc x86" - -DESCRIPTION="libmagic bindings for PHP." -LICENSE="PHP" -SLOT="0" -IUSE="" - -DEPEND="sys-apps/file" -RDEPEND="${DEPEND}" - -need_php_by_category diff --git a/dev-php5/pecl-http/ChangeLog b/dev-php5/pecl-http/ChangeLog index 69bbab2fb151..3e1a006ca3d6 100644 --- a/dev-php5/pecl-http/ChangeLog +++ b/dev-php5/pecl-http/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-php5/pecl-http # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-http/ChangeLog,v 1.6 2007/08/30 13:04:58 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-http/ChangeLog,v 1.7 2007/09/06 16:05:06 jokey Exp $ + + 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> -pecl-http-1.5.2.ebuild: + Cleanup 28 Aug 2007; Jakub Moc <jakub@gentoo.org> pecl-http-1.5.4.ebuild: Check for hash, not mhash in postinst. diff --git a/dev-php5/pecl-http/files/digest-pecl-http-1.5.2 b/dev-php5/pecl-http/files/digest-pecl-http-1.5.2 deleted file mode 100644 index 7978e12a5927..000000000000 --- a/dev-php5/pecl-http/files/digest-pecl-http-1.5.2 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 7df4c9f7cb9023cede5c18913c995fd4 pecl_http-1.5.2.tgz 168058 -RMD160 ecbc203eb0f07fe60c1e4d79885d06cfd5090890 pecl_http-1.5.2.tgz 168058 -SHA256 cd5341c19209a9d10aad8d43e9bf70cfa844bbfa128749b09f4c7f723f199513 pecl_http-1.5.2.tgz 168058 diff --git a/dev-php5/pecl-http/pecl-http-1.5.2.ebuild b/dev-php5/pecl-http/pecl-http-1.5.2.ebuild deleted file mode 100644 index 15684b8d6ee8..000000000000 --- a/dev-php5/pecl-http/pecl-http-1.5.2.ebuild +++ /dev/null @@ -1,31 +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/pecl-http/pecl-http-1.5.2.ebuild,v 1.1 2007/03/17 23:55:14 chtekk Exp $ - -PHP_EXT_NAME="http" -PHP_EXT_PECL_PKG="pecl_http" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" - -inherit php-ext-pecl-r1 - -KEYWORDS="~amd64 ~x86" - -DESCRIPTION="Extended HTTP Support for PHP." -LICENSE="BSD" -SLOT="0" -IUSE="" - -DEPEND="net-misc/curl - sys-libs/zlib" -RDEPEND="${DEPEND}" - -need_php_by_category - -src_compile() { - my_conf="--enable-http \ - --with-http-curl-requests \ - --with-http-zlib-compression" - - php-ext-pecl-r1_src_compile -} diff --git a/dev-php5/pecl-imagick/ChangeLog b/dev-php5/pecl-imagick/ChangeLog index b9d3360aa625..54f0dfd752d9 100644 --- a/dev-php5/pecl-imagick/ChangeLog +++ b/dev-php5/pecl-imagick/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-php5/pecl-imagick # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-imagick/ChangeLog,v 1.9 2007/08/17 12:00:23 hoffie Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-imagick/ChangeLog,v 1.10 2007/09/06 16:05:43 jokey Exp $ + + 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> + -pecl-imagick-0.9.11.ebuild: + Cleanup *pecl-imagick-2.0.0_rc1 (17 Aug 2007) diff --git a/dev-php5/pecl-imagick/files/digest-pecl-imagick-0.9.11 b/dev-php5/pecl-imagick/files/digest-pecl-imagick-0.9.11 deleted file mode 100644 index e818cf880d9b..000000000000 --- a/dev-php5/pecl-imagick/files/digest-pecl-imagick-0.9.11 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 c8f78b063eb3fbdef1c8501190983c89 imagick-0.9.11.tgz 69562 -RMD160 73ddef27cf9b12678f3ae1aa0b86ce826c53be81 imagick-0.9.11.tgz 69562 -SHA256 03df8fb8f1ea5db5c21bee7029fb46af3621350f8987549faa24c4da9ae5fd59 imagick-0.9.11.tgz 69562 diff --git a/dev-php5/pecl-imagick/pecl-imagick-0.9.11.ebuild b/dev-php5/pecl-imagick/pecl-imagick-0.9.11.ebuild deleted file mode 100644 index a45612c54375..000000000000 --- a/dev-php5/pecl-imagick/pecl-imagick-0.9.11.ebuild +++ /dev/null @@ -1,21 +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/pecl-imagick/pecl-imagick-0.9.11.ebuild,v 1.9 2007/04/17 21:10:15 chtekk Exp $ - -PHP_EXT_NAME="imagick" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" - -inherit php-ext-pecl-r1 - -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" - -DESCRIPTION="PHP wrapper for the ImageMagick library." -LICENSE="PHP" -SLOT="0" -IUSE="" - -DEPEND=">=media-gfx/imagemagick-6.2.0" -RDEPEND="${DEPEND}" - -need_php_by_category diff --git a/dev-php5/pecl-mailparse/ChangeLog b/dev-php5/pecl-mailparse/ChangeLog index 589e9e5931be..60f24cb9c1a1 100644 --- a/dev-php5/pecl-mailparse/ChangeLog +++ b/dev-php5/pecl-mailparse/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-php5/pecl-mailparse # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-mailparse/ChangeLog,v 1.11 2007/09/05 15:49:41 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-mailparse/ChangeLog,v 1.12 2007/09/06 16:06:09 jokey Exp $ + + 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> + -pecl-mailparse-2.1.1.ebuild: + Cleanup 05 Sep 2007; Markus Ullmann <jokey@gentoo.org> +files/mailparse-c-64bit-segfault.diff, diff --git a/dev-php5/pecl-mailparse/files/digest-pecl-mailparse-2.1.1 b/dev-php5/pecl-mailparse/files/digest-pecl-mailparse-2.1.1 deleted file mode 100644 index 7e959a55cfb4..000000000000 --- a/dev-php5/pecl-mailparse/files/digest-pecl-mailparse-2.1.1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 14c058d79f1f6c01aa53273565bd4a54 mailparse-2.1.1.tgz 35883 -RMD160 6b8452301b53167dea9bbdca3c46889c52ada474 mailparse-2.1.1.tgz 35883 -SHA256 c7bcccf079c70dfd76c07074bae3653d3c7ab64441ab888bf5a5e334f83ad206 mailparse-2.1.1.tgz 35883 diff --git a/dev-php5/pecl-mailparse/pecl-mailparse-2.1.1.ebuild b/dev-php5/pecl-mailparse/pecl-mailparse-2.1.1.ebuild deleted file mode 100644 index 4e53e2f74f7a..000000000000 --- a/dev-php5/pecl-mailparse/pecl-mailparse-2.1.1.ebuild +++ /dev/null @@ -1,39 +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/pecl-mailparse/pecl-mailparse-2.1.1.ebuild,v 1.7 2007/03/18 00:10:11 chtekk Exp $ - -PHP_EXT_NAME="mailparse" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" - -inherit php-ext-pecl-r1 - -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" - -DESCRIPTION="A PHP extension for parsing and working with RFC822 and RFC2045 (MIME) compliant messages." -LICENSE="PHP" -SLOT="0" -IUSE="" - -DEPEND="" -RDEPEND="" - -need_php_by_category - -pkg_setup() { - has_php - require_php_with_use unicode -} - -src_unpack() { - unpack ${A} - cd "${S}" - - # Patch against segfaults - epatch "${FILESDIR}/cvs-mailparse.c-fix.diff" -} - -src_install() { - php-ext-pecl-r1_src_install - dodoc-php README -} diff --git a/dev-php5/pecl-ps/ChangeLog b/dev-php5/pecl-ps/ChangeLog index 0a3af121ffbf..e5a490179af1 100644 --- a/dev-php5/pecl-ps/ChangeLog +++ b/dev-php5/pecl-ps/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-php5/pecl-ps # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-ps/ChangeLog,v 1.7 2007/08/31 09:52:57 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-ps/ChangeLog,v 1.8 2007/09/06 16:06:51 jokey Exp $ + + 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> -pecl-ps-1.3.4.ebuild: + Cleanup *pecl-ps-1.3.5 (31 Aug 2007) diff --git a/dev-php5/pecl-ps/files/digest-pecl-ps-1.3.4 b/dev-php5/pecl-ps/files/digest-pecl-ps-1.3.4 deleted file mode 100644 index 12967db897f6..000000000000 --- a/dev-php5/pecl-ps/files/digest-pecl-ps-1.3.4 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 1fd7838a85c69617416d64ebe32f653a ps-1.3.4.tgz 197802 -RMD160 c6d12e4084201a8385b3fa63a9d105c51f8e46a1 ps-1.3.4.tgz 197802 -SHA256 af0a003bf3b1f26dab81b4f5f7184675ba5c7f86a48928d7f8bf4077d1e87602 ps-1.3.4.tgz 197802 diff --git a/dev-php5/pecl-ps/pecl-ps-1.3.4.ebuild b/dev-php5/pecl-ps/pecl-ps-1.3.4.ebuild deleted file mode 100644 index d91c74934bab..000000000000 --- a/dev-php5/pecl-ps/pecl-ps-1.3.4.ebuild +++ /dev/null @@ -1,21 +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/pecl-ps/pecl-ps-1.3.4.ebuild,v 1.1 2007/03/18 00:45:20 chtekk Exp $ - -PHP_EXT_NAME="ps" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" - -inherit php-ext-pecl-r1 - -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" - -DESCRIPTION="PHP extension for creating PostScript files." -LICENSE="PHP" -SLOT="0" -IUSE="" - -DEPEND="dev-libs/pslib" -RDEPEND="${DEPEND}" - -need_php_by_category diff --git a/dev-php5/pecl-radius/ChangeLog b/dev-php5/pecl-radius/ChangeLog index 94c1c9121783..30f53b9d2f46 100644 --- a/dev-php5/pecl-radius/ChangeLog +++ b/dev-php5/pecl-radius/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-php5/pecl-radius # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-radius/ChangeLog,v 1.6 2007/08/31 09:54:01 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-radius/ChangeLog,v 1.7 2007/09/06 16:07:06 jokey Exp $ + + 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> -pecl-radius-1.2.4.ebuild: + Cleanup *pecl-radius-1.2.5 (31 Aug 2007) diff --git a/dev-php5/pecl-radius/files/digest-pecl-radius-1.2.4 b/dev-php5/pecl-radius/files/digest-pecl-radius-1.2.4 deleted file mode 100644 index ca84936e77f4..000000000000 --- a/dev-php5/pecl-radius/files/digest-pecl-radius-1.2.4 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 3d48ccb9486b9e8839d814d7ff318091 radius-1.2.4.tgz 29599 -RMD160 6c886031a750583df3ffa558dc4a0e155fa9dcf4 radius-1.2.4.tgz 29599 -SHA256 500e455ac429044fa33b07bfb07126230efc28fc6e61f8e6fd959dd032009866 radius-1.2.4.tgz 29599 diff --git a/dev-php5/pecl-radius/pecl-radius-1.2.4.ebuild b/dev-php5/pecl-radius/pecl-radius-1.2.4.ebuild deleted file mode 100644 index 5eb8e84864d5..000000000000 --- a/dev-php5/pecl-radius/pecl-radius-1.2.4.ebuild +++ /dev/null @@ -1,21 +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/pecl-radius/pecl-radius-1.2.4.ebuild,v 1.4 2007/03/18 00:48:12 chtekk Exp $ - -PHP_EXT_NAME="radius" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" - -inherit php-ext-pecl-r1 - -KEYWORDS="~amd64 ~x86" - -DESCRIPTION="Provides full support for RADIUS authentication (RFC 2865) and RADIUS accounting (RFC 2866)." -LICENSE="BSD" -SLOT="0" -IUSE="" - -DEPEND="" -RDEPEND="" - -need_php_by_category diff --git a/dev-php5/pecl-yaz/ChangeLog b/dev-php5/pecl-yaz/ChangeLog index 0ac76a6d3a33..9baeb935dec2 100644 --- a/dev-php5/pecl-yaz/ChangeLog +++ b/dev-php5/pecl-yaz/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-php5/pecl-yaz # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-yaz/ChangeLog,v 1.23 2007/07/01 18:54:21 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-yaz/ChangeLog,v 1.24 2007/09/06 16:07:44 jokey Exp $ + + 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> -pecl-yaz-1.0.4.ebuild: + Cleanup 01 Jul 2007; Raúl Porcel <armin76@gentoo.org> pecl-yaz-1.0.8.ebuild: alpha stable wrt #173849 diff --git a/dev-php5/pecl-yaz/files/digest-pecl-yaz-1.0.4 b/dev-php5/pecl-yaz/files/digest-pecl-yaz-1.0.4 deleted file mode 100644 index dd636ed810cd..000000000000 --- a/dev-php5/pecl-yaz/files/digest-pecl-yaz-1.0.4 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 2ae4180bcfc00199c465815f89fc3b16 yaz-1.0.4.tgz 15793 -RMD160 93996bc2b3c83e323a0ba2239ad8e753817850b8 yaz-1.0.4.tgz 15793 -SHA256 2d357cdbd3dd6e24f5da2dd50b5134998ddafb36b54c2f1dce328828e0d9e8b9 yaz-1.0.4.tgz 15793 diff --git a/dev-php5/pecl-yaz/pecl-yaz-1.0.4.ebuild b/dev-php5/pecl-yaz/pecl-yaz-1.0.4.ebuild deleted file mode 100644 index 377028395894..000000000000 --- a/dev-php5/pecl-yaz/pecl-yaz-1.0.4.ebuild +++ /dev/null @@ -1,26 +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/pecl-yaz/pecl-yaz-1.0.4.ebuild,v 1.18 2007/03/18 01:01:12 chtekk Exp $ - -PHP_EXT_NAME="yaz" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" - -inherit php-ext-pecl-r1 - -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86" - -DESCRIPTION="This extension implements a Z39.50 client for PHP using the YAZ toolkit." -LICENSE="PHP" -SLOT="0" -IUSE="" - -DEPEND=">=dev-libs/yaz-2.0.13" -RDEPEND="${DEPEND}" - -need_php_by_category - -src_compile() { - my_conf="--with-yaz=/usr" - php-ext-pecl-r1_src_compile -} diff --git a/dev-php5/pecl-zip/ChangeLog b/dev-php5/pecl-zip/ChangeLog index 011bfc884146..e7b122677ae7 100644 --- a/dev-php5/pecl-zip/ChangeLog +++ b/dev-php5/pecl-zip/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-php5/pecl-zip # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-zip/ChangeLog,v 1.33 2007/08/31 09:55:13 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-zip/ChangeLog,v 1.34 2007/09/06 16:08:19 jokey Exp $ + + 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> -pecl-zip-1.0.ebuild, + -pecl-zip-1.8.8.ebuild: + Cleanup *pecl-zip-1.8.10 (31 Aug 2007) diff --git a/dev-php5/pecl-zip/files/digest-pecl-zip-1.0 b/dev-php5/pecl-zip/files/digest-pecl-zip-1.0 deleted file mode 100644 index 9fd49d9086ca..000000000000 --- a/dev-php5/pecl-zip/files/digest-pecl-zip-1.0 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 255203b19e46c0512e6ab3780ba2d2e5 zip-1.0.tgz 4930 -RMD160 e84897c46c84a206fe9536cdaa6ad50f684d77db zip-1.0.tgz 4930 -SHA256 0375e17b012c04dc204e5d2a857882cd6d9fb9b3a09ea3d165ba3ce8c9e2533b zip-1.0.tgz 4930 diff --git a/dev-php5/pecl-zip/files/digest-pecl-zip-1.8.8 b/dev-php5/pecl-zip/files/digest-pecl-zip-1.8.8 deleted file mode 100644 index 237182abf9d1..000000000000 --- a/dev-php5/pecl-zip/files/digest-pecl-zip-1.8.8 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 e5502160c855883816d589f6c4409956 zip-1.8.8.tgz 66898 -RMD160 2788b32c5ac8da54804292cec34c56dcee29c35c zip-1.8.8.tgz 66898 -SHA256 be8295d645538dec52e12d2bd98e9ceff3562c1bbed8a740f626acbe3ad6c172 zip-1.8.8.tgz 66898 diff --git a/dev-php5/pecl-zip/pecl-zip-1.0.ebuild b/dev-php5/pecl-zip/pecl-zip-1.0.ebuild deleted file mode 100644 index 254d302c556b..000000000000 --- a/dev-php5/pecl-zip/pecl-zip-1.0.ebuild +++ /dev/null @@ -1,21 +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/pecl-zip/pecl-zip-1.0.ebuild,v 1.17 2007/03/20 14:22:14 gustavoz Exp $ - -PHP_EXT_NAME="zip" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" - -inherit php-ext-pecl-r1 - -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh x86" - -DESCRIPTION="PHP zip management extension." -LICENSE="PHP" -SLOT="0" -IUSE="" - -DEPEND="dev-libs/zziplib" -RDEPEND="${DEPEND}" - -need_php_by_category diff --git a/dev-php5/pecl-zip/pecl-zip-1.8.8.ebuild b/dev-php5/pecl-zip/pecl-zip-1.8.8.ebuild deleted file mode 100644 index e5ab1a0e840f..000000000000 --- a/dev-php5/pecl-zip/pecl-zip-1.8.8.ebuild +++ /dev/null @@ -1,21 +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/pecl-zip/pecl-zip-1.8.8.ebuild,v 1.1 2007/03/19 14:57:26 chtekk Exp $ - -PHP_EXT_NAME="zip" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" - -inherit php-ext-pecl-r1 - -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" - -DESCRIPTION="PHP zip management extension." -LICENSE="PHP" -SLOT="0" -IUSE="" - -DEPEND="sys-libs/zlib" -RDEPEND="${DEPEND}" - -need_php_by_category diff --git a/dev-php5/xdebug/ChangeLog b/dev-php5/xdebug/ChangeLog index 2045351fd1b0..c7320e5a41f6 100644 --- a/dev-php5/xdebug/ChangeLog +++ b/dev-php5/xdebug/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-php5/xdebug # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/xdebug/ChangeLog,v 1.14 2007/08/16 21:39:08 hoffie Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/xdebug/ChangeLog,v 1.15 2007/09/06 16:10:10 jokey Exp $ + + 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> -xdebug-2.0.0_rc3.ebuild, + -xdebug-2.0.0_rc4.ebuild: + Cleanup *xdebug-2.0.0 (16 Aug 2007) diff --git a/dev-php5/xdebug/files/digest-xdebug-2.0.0_rc3 b/dev-php5/xdebug/files/digest-xdebug-2.0.0_rc3 deleted file mode 100644 index ded54d29e220..000000000000 --- a/dev-php5/xdebug/files/digest-xdebug-2.0.0_rc3 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 5cc4bd38b26074f91bbf3d0237b8d21e xdebug-2.0.0RC3.tgz 261735 -RMD160 6f012836117f4fdb8c3979078266135989dbcf43 xdebug-2.0.0RC3.tgz 261735 -SHA256 263cfe074b86f0453bd62bf594cb7be79f514ee92d54491beb5858b87f048635 xdebug-2.0.0RC3.tgz 261735 diff --git a/dev-php5/xdebug/files/digest-xdebug-2.0.0_rc4 b/dev-php5/xdebug/files/digest-xdebug-2.0.0_rc4 deleted file mode 100644 index ade274eed74c..000000000000 --- a/dev-php5/xdebug/files/digest-xdebug-2.0.0_rc4 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 19e614105e96741b0a030ece233a8ced xdebug-2.0.0RC4.tgz 269219 -RMD160 8d37414e3efc1aff55582781d8c2e4c4bdccfeec xdebug-2.0.0RC4.tgz 269219 -SHA256 7b4b397aa9e6f52e81ad188e42cb5332294b9748b562159edfc2b83b808eac85 xdebug-2.0.0RC4.tgz 269219 diff --git a/dev-php5/xdebug/xdebug-2.0.0_rc3.ebuild b/dev-php5/xdebug/xdebug-2.0.0_rc3.ebuild deleted file mode 100644 index 4ca6503cbfae..000000000000 --- a/dev-php5/xdebug/xdebug-2.0.0_rc3.ebuild +++ /dev/null @@ -1,79 +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/xdebug/xdebug-2.0.0_rc3.ebuild,v 1.2 2007/03/18 03:08:30 chtekk Exp $ - -PHP_EXT_NAME="xdebug" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="yes" - -inherit php-ext-source-r1 - -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" - -MY_PV="${PV/_/}" -MY_PV="${MY_PV/rc/RC}" - -DESCRIPTION="A PHP Debugging and Profiling extension." -HOMEPAGE="http://www.xdebug.org/" -SRC_URI="http://pecl.php.net/get/${PN}-${MY_PV}.tgz" -LICENSE="Xdebug" -SLOT="0" -IUSE="" - -S="${WORKDIR}/${PN}-${MY_PV}" - -DEPEND="!dev-php5/ZendOptimizer" -RDEPEND="${DEPEND} - ~dev-php/xdebug-client-${PV}" - -need_php_by_category - -src_install() { - php-ext-source-r1_src_install - dodoc-php NEWS README Changelog CREDITS LICENSE - - php-ext-base-r1_addtoinifiles "xdebug.auto_trace" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.trace_output_dir" '"/tmp"' - php-ext-base-r1_addtoinifiles "xdebug.trace_output_name" '"crc32"' - php-ext-base-r1_addtoinifiles "xdebug.trace_format" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.trace_options" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.collect_includes" '"1"' - php-ext-base-r1_addtoinifiles "xdebug.collect_params" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.collect_return" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.collect_vars" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.default_enable" '"1"' - php-ext-base-r1_addtoinifiles "xdebug.extended_info" '"1"' - php-ext-base-r1_addtoinifiles "xdebug.manual_url" '"http://www.php.net"' - php-ext-base-r1_addtoinifiles "xdebug.max_nesting_level" '"100"' - php-ext-base-r1_addtoinifiles "xdebug.show_exception_trace" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.show_local_vars" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.show_mem_delta" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.dump.COOKIE" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump.ENV" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump.FILES" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump.GET" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump.POST" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump.REQUEST" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump.SERVER" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump.SESSION" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump_globals" '"1"' - php-ext-base-r1_addtoinifiles "xdebug.dump_once" '"1"' - php-ext-base-r1_addtoinifiles "xdebug.dump_undefined" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.profiler_enable" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.profiler_output_dir" '"/tmp"' - php-ext-base-r1_addtoinifiles "xdebug.profiler_output_name" '"crc32"' - php-ext-base-r1_addtoinifiles "xdebug.profiler_enable_trigger" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.profiler_append" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.profiler_aggregate" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.remote_enable" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.remote_handler" '"dbgp"' - php-ext-base-r1_addtoinifiles "xdebug.remote_host" '"localhost"' - php-ext-base-r1_addtoinifiles "xdebug.remote_mode" '"req"' - php-ext-base-r1_addtoinifiles "xdebug.remote_port" '"9000"' - php-ext-base-r1_addtoinifiles "xdebug.remote_autostart" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.remote_log" '""' - php-ext-base-r1_addtoinifiles "xdebug.idekey" '""' - php-ext-base-r1_addtoinifiles "xdebug.var_display_max_data" '"512"' - php-ext-base-r1_addtoinifiles "xdebug.var_display_max_depth" '"2"' - php-ext-base-r1_addtoinifiles "xdebug.var_display_max_children" '"128"' -} diff --git a/dev-php5/xdebug/xdebug-2.0.0_rc4.ebuild b/dev-php5/xdebug/xdebug-2.0.0_rc4.ebuild deleted file mode 100644 index 3b2b5221bae8..000000000000 --- a/dev-php5/xdebug/xdebug-2.0.0_rc4.ebuild +++ /dev/null @@ -1,79 +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/xdebug/xdebug-2.0.0_rc4.ebuild,v 1.1 2007/06/30 17:19:12 voxus Exp $ - -PHP_EXT_NAME="xdebug" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="yes" - -inherit php-ext-source-r1 - -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" - -MY_PV="${PV/_/}" -MY_PV="${MY_PV/rc/RC}" - -DESCRIPTION="A PHP Debugging and Profiling extension." -HOMEPAGE="http://www.xdebug.org/" -SRC_URI="http://pecl.php.net/get/${PN}-${MY_PV}.tgz" -LICENSE="Xdebug" -SLOT="0" -IUSE="" - -S="${WORKDIR}/${PN}-${MY_PV}" - -DEPEND="!dev-php5/ZendOptimizer" -RDEPEND="${DEPEND} - ~dev-php/xdebug-client-${PV}" - -need_php_by_category - -src_install() { - php-ext-source-r1_src_install - dodoc-php NEWS README Changelog CREDITS LICENSE - - php-ext-base-r1_addtoinifiles "xdebug.auto_trace" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.trace_output_dir" '"/tmp"' - php-ext-base-r1_addtoinifiles "xdebug.trace_output_name" '"crc32"' - php-ext-base-r1_addtoinifiles "xdebug.trace_format" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.trace_options" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.collect_includes" '"1"' - php-ext-base-r1_addtoinifiles "xdebug.collect_params" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.collect_return" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.collect_vars" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.default_enable" '"1"' - php-ext-base-r1_addtoinifiles "xdebug.extended_info" '"1"' - php-ext-base-r1_addtoinifiles "xdebug.manual_url" '"http://www.php.net"' - php-ext-base-r1_addtoinifiles "xdebug.max_nesting_level" '"100"' - php-ext-base-r1_addtoinifiles "xdebug.show_exception_trace" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.show_local_vars" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.show_mem_delta" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.dump.COOKIE" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump.ENV" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump.FILES" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump.GET" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump.POST" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump.REQUEST" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump.SERVER" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump.SESSION" '"NULL"' - php-ext-base-r1_addtoinifiles "xdebug.dump_globals" '"1"' - php-ext-base-r1_addtoinifiles "xdebug.dump_once" '"1"' - php-ext-base-r1_addtoinifiles "xdebug.dump_undefined" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.profiler_enable" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.profiler_output_dir" '"/tmp"' - php-ext-base-r1_addtoinifiles "xdebug.profiler_output_name" '"crc32"' - php-ext-base-r1_addtoinifiles "xdebug.profiler_enable_trigger" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.profiler_append" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.profiler_aggregate" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.remote_enable" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.remote_handler" '"dbgp"' - php-ext-base-r1_addtoinifiles "xdebug.remote_host" '"localhost"' - php-ext-base-r1_addtoinifiles "xdebug.remote_mode" '"req"' - php-ext-base-r1_addtoinifiles "xdebug.remote_port" '"9000"' - php-ext-base-r1_addtoinifiles "xdebug.remote_autostart" '"0"' - php-ext-base-r1_addtoinifiles "xdebug.remote_log" '""' - php-ext-base-r1_addtoinifiles "xdebug.idekey" '""' - php-ext-base-r1_addtoinifiles "xdebug.var_display_max_data" '"512"' - php-ext-base-r1_addtoinifiles "xdebug.var_display_max_depth" '"2"' - php-ext-base-r1_addtoinifiles "xdebug.var_display_max_children" '"128"' -} diff --git a/dev-php5/znf/ChangeLog b/dev-php5/znf/ChangeLog index 6f6ad42741c9..3cbf6e4437c4 100644 --- a/dev-php5/znf/ChangeLog +++ b/dev-php5/znf/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-php5/znf # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/znf/ChangeLog,v 1.6 2007/08/31 09:56:24 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/znf/ChangeLog,v 1.7 2007/09/06 16:10:28 jokey Exp $ + + 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> -znf-0.7.6.ebuild: + Cleanup *znf-0.7.9 (31 Aug 2007) diff --git a/dev-php5/znf/files/digest-znf-0.7.6 b/dev-php5/znf/files/digest-znf-0.7.6 deleted file mode 100644 index a68977f8af38..000000000000 --- a/dev-php5/znf/files/digest-znf-0.7.6 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 7c4aace98554d228e29d0090f6a6ad24 ZNF-0.7.6.tgz 904155 -RMD160 334eb7edc0a9ea86c29a752d4b8a1da36b34582a ZNF-0.7.6.tgz 904155 -SHA256 cb2211eb4f034f5b1abffd381f37fabf96c1ec871cbe502b3c43ded75416ad3f ZNF-0.7.6.tgz 904155 diff --git a/dev-php5/znf/znf-0.7.6.ebuild b/dev-php5/znf/znf-0.7.6.ebuild deleted file mode 100644 index 571005cce80a..000000000000 --- a/dev-php5/znf/znf-0.7.6.ebuild +++ /dev/null @@ -1,29 +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/znf/znf-0.7.6.ebuild,v 1.4 2007/03/18 03:21:08 chtekk Exp $ - -inherit php-pear-lib-r1 - -KEYWORDS="~amd64 ~sparc ~x86" - -MY_P="ZNF-${PV}" - -DESCRIPTION="PHP5 MVC framework for enterprise web applications." -HOMEPAGE="http://znf.zeronotice.com/" -SRC_URI="mirror://sourceforge/znf/${MY_P}.tgz" -LICENSE="LGPL-2.1" -SLOT="0" -IUSE="pear-db smarty" - -DEPEND="" -RDEPEND="pear-db? ( >=dev-php/PEAR-DB-1.7.6-r1 ) - smarty? ( >=dev-php/smarty-2.6.10-r1 )" - -S="${WORKDIR}/${MY_P}" - -need_php_by_category - -pkg_setup() { - has_php - require_php_with_use xml xsl -} |