diff options
author | Luca Longinotti <chtekk@gentoo.org> | 2006-01-11 14:44:49 +0000 |
---|---|---|
committer | Luca Longinotti <chtekk@gentoo.org> | 2006-01-11 14:44:49 +0000 |
commit | 7a5595bdc3674b0094bfc55cf07303346c122c9f (patch) | |
tree | aaa71269368453fabedb03acb30014334ff92a69 /dev-php5/pecl-memcache | |
parent | Pruned old version (diff) | |
download | historical-7a5595bdc3674b0094bfc55cf07303346c122c9f.tar.gz historical-7a5595bdc3674b0094bfc55cf07303346c122c9f.tar.bz2 historical-7a5595bdc3674b0094bfc55cf07303346c122c9f.zip |
Remove unused patch.
Package-Manager: portage-2.0.54
Diffstat (limited to 'dev-php5/pecl-memcache')
-rw-r--r-- | dev-php5/pecl-memcache/ChangeLog | 6 | ||||
-rw-r--r-- | dev-php5/pecl-memcache/Manifest | 5 | ||||
-rw-r--r-- | dev-php5/pecl-memcache/files/config-zlib-det-fix.patch | 103 | ||||
-rw-r--r-- | dev-php5/pecl-memcache/pecl-memcache-2.0.0.ebuild | 4 |
4 files changed, 9 insertions, 109 deletions
diff --git a/dev-php5/pecl-memcache/ChangeLog b/dev-php5/pecl-memcache/ChangeLog index bdcad166e716..8be197736e52 100644 --- a/dev-php5/pecl-memcache/ChangeLog +++ b/dev-php5/pecl-memcache/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-php5/pecl-memcache # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-memcache/ChangeLog,v 1.7 2006/01/11 04:00:53 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-memcache/ChangeLog,v 1.8 2006/01/11 14:44:49 chtekk Exp $ + + 11 Jan 2006; Luca Longinotti <chtekk@gentoo.org> + -files/config-zlib-det-fix.patch, pecl-memcache-2.0.0.ebuild: + Remove unused patch and eutils inherit. 11 Jan 2006; Robin H. Johnson <robbat2@gentoo.org> pecl-memcache-2.0.0.ebuild: diff --git a/dev-php5/pecl-memcache/Manifest b/dev-php5/pecl-memcache/Manifest index aa9d3098bbf3..30ed08db7e67 100644 --- a/dev-php5/pecl-memcache/Manifest +++ b/dev-php5/pecl-memcache/Manifest @@ -1,5 +1,4 @@ -MD5 6e7134d0945e492790abc3c62160b559 ChangeLog 1042 -MD5 7a4ae6237c651bc458cc5dd85224b5e3 files/config-zlib-det-fix.patch 3403 +MD5 df3719176d524ab857d573e08f84715d ChangeLog 1199 MD5 2b340edcc01d9e1afddcf52d7cc5cb32 files/digest-pecl-memcache-2.0.0 62 MD5 c58d07ca1c1235bbad9bccaec96fc062 metadata.xml 157 -MD5 56269930335a21b3920ff99916fe351c pecl-memcache-2.0.0.ebuild 780 +MD5 c61614e10e23309da3cb7c7a2381499e pecl-memcache-2.0.0.ebuild 772 diff --git a/dev-php5/pecl-memcache/files/config-zlib-det-fix.patch b/dev-php5/pecl-memcache/files/config-zlib-det-fix.patch deleted file mode 100644 index 5ce9eff569b6..000000000000 --- a/dev-php5/pecl-memcache/files/config-zlib-det-fix.patch +++ /dev/null @@ -1,103 +0,0 @@ ---- config.m4 2005-11-27 12:05:10.000000000 +0100
-+++ config.m4 2006-01-06 18:30:46.000000000 +0100
-@@ -1,49 +1,51 @@
--dnl
--dnl $Id: config.m4,v 1.4 2005/11/26 17:53:18 tony2001 Exp $
--dnl
--
--PHP_ARG_ENABLE(memcache, whether to enable memcache support,
--[ --enable-memcache Enable memcache support])
--
--if test -z "$PHP_ZLIB_DIR"; then
--PHP_ARG_WITH(zlib-dir, for the location of libz,
--[ --with-zlib-dir[=DIR] memcache: Set the path to libz install prefix.], no, no)
--fi
--
--if test "$PHP_MEMCACHE" != "no"; then
--
-- if test "$PHP_ZLIB_DIR" != "no"; then
-- if test -f $PHP_ZLIB_DIR/include/zlib/zlib.h; then
-- PHP_ZLIB_DIR=$PHP_ZLIB_DIR
-- PHP_ZLIB_INCDIR=$PHP_ZLIB_DIR/include/zlib
-- elif test -f $PHP_ZLIB_DIR/include/zlib.h; then
-- PHP_ZLIB_DIR=$PHP_ZLIB_DIR
-- PHP_ZLIB_INCDIR=$PHP_ZLIB_DIR/include
-- fi
-- else
-- for i in /usr/local /usr; do
-- if test -f $i/include/zlib/zlib.h; then
-- PHP_ZLIB_DIR=$i
-- PHP_ZLIB_INCDIR=$i/include/zlib
-- elif test -f $i/include/zlib.h; then
-- PHP_ZLIB_DIR=$i
-- PHP_ZLIB_INCDIR=$i/include
-- fi
-- done
-- fi
--
-- dnl # zlib
-- AC_MSG_CHECKING([for the location of zlib])
-- if test "$PHP_ZLIB_DIR" = "no"; then
-- AC_MSG_ERROR([memcache support requires ZLIB. Use --with-zlib-dir=<DIR>])
-- else
-- AC_MSG_RESULT([$PHP_ZLIB_DIR])
-- PHP_ADD_LIBRARY_WITH_PATH(z, $PHP_ZLIB_DIR/lib, MEMCACHE_SHARED_LIBADD)
-- PHP_ADD_INCLUDE($PHP_ZLIB_INCDIR)
-- fi
--
-- AC_DEFINE(HAVE_MEMCACHE,1,[Whether you want memcache support])
-- PHP_NEW_EXTENSION(memcache, memcache.c, $ext_shared)
--fi
--
--
-+dnl
-+dnl $Id: config.m4,v 1.5 2005/12/29 15:27:57 tony2001 Exp $
-+dnl
-+
-+PHP_ARG_ENABLE(memcache, whether to enable memcache support,
-+[ --enable-memcache Enable memcache support])
-+
-+if test -z "$PHP_ZLIB_DIR"; then
-+PHP_ARG_WITH(zlib-dir, for the location of libz,
-+[ --with-zlib-dir[=DIR] memcache: Set the path to libz install prefix.], no, no)
-+fi
-+
-+if test "$PHP_MEMCACHE" != "no"; then
-+
-+ if test "$PHP_ZLIB_DIR" != "no" && test "$PHP_ZLIB_DIR" != "yes"; then
-+ if test -f "$PHP_ZLIB_DIR/include/zlib/zlib.h"; then
-+ PHP_ZLIB_DIR="$PHP_ZLIB_DIR"
-+ PHP_ZLIB_INCDIR="$PHP_ZLIB_DIR/include/zlib"
-+ elif test -f "$PHP_ZLIB_DIR/include/zlib.h"; then
-+ PHP_ZLIB_DIR="$PHP_ZLIB_DIR"
-+ PHP_ZLIB_INCDIR="$PHP_ZLIB_DIR/include"
-+ else
-+ AC_MSG_ERROR([Can't find zlib headers under "$PHP_ZLIB_DIR"])
-+ fi
-+ else
-+ for i in /usr/local /usr; do
-+ if test -f "$i/include/zlib/zlib.h"; then
-+ PHP_ZLIB_DIR="$i"
-+ PHP_ZLIB_INCDIR="$i/include/zlib"
-+ elif test -f "$i/include/zlib.h"; then
-+ PHP_ZLIB_DIR="$i"
-+ PHP_ZLIB_INCDIR="$i/include"
-+ fi
-+ done
-+ fi
-+
-+ dnl # zlib
-+ AC_MSG_CHECKING([for the location of zlib])
-+ if test "$PHP_ZLIB_DIR" = "no"; then
-+ AC_MSG_ERROR([memcache support requires ZLIB. Use --with-zlib-dir=<DIR> to specify prefix where ZLIB include and library are located])
-+ else
-+ AC_MSG_RESULT([$PHP_ZLIB_DIR])
-+ PHP_ADD_LIBRARY_WITH_PATH(z, $PHP_ZLIB_DIR/lib, MEMCACHE_SHARED_LIBADD)
-+ PHP_ADD_INCLUDE($PHP_ZLIB_INCDIR)
-+ fi
-+
-+ AC_DEFINE(HAVE_MEMCACHE,1,[Whether you want memcache support])
-+ PHP_NEW_EXTENSION(memcache, memcache.c, $ext_shared)
-+fi
-+
-+
diff --git a/dev-php5/pecl-memcache/pecl-memcache-2.0.0.ebuild b/dev-php5/pecl-memcache/pecl-memcache-2.0.0.ebuild index 6ecdcd108c90..566b9186630b 100644 --- a/dev-php5/pecl-memcache/pecl-memcache-2.0.0.ebuild +++ b/dev-php5/pecl-memcache/pecl-memcache-2.0.0.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-memcache/pecl-memcache-2.0.0.ebuild,v 1.3 2006/01/11 04:00:53 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-memcache/pecl-memcache-2.0.0.ebuild,v 1.4 2006/01/11 14:44:49 chtekk Exp $ PHP_EXT_NAME="memcache" PHP_EXT_INI="yes" PHP_EXT_ZENDEXT="no" -inherit php-ext-pecl-r1 eutils +inherit php-ext-pecl-r1 KEYWORDS="~ppc ~ppc64 ~sparc ~x86" DESCRIPTION="PHP extension for using memcached." |