summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Longinotti <chtekk@gentoo.org>2006-01-11 11:44:34 +0000
committerLuca Longinotti <chtekk@gentoo.org>2006-01-11 11:44:34 +0000
commit6e4ace72c260ab19b3f94f2054995bf49ffffd7b (patch)
tree3634b3067a23a8a2ea88bab98c623ff4009cb029 /dev-php4
parentAdjusted amd64 deps for bug 118417, libcups is required to avoid crash when p... (diff)
downloadhistorical-6e4ace72c260ab19b3f94f2054995bf49ffffd7b.tar.gz
historical-6e4ace72c260ab19b3f94f2054995bf49ffffd7b.tar.bz2
historical-6e4ace72c260ab19b3f94f2054995bf49ffffd7b.zip
Remove unused patch.
Package-Manager: portage-2.0.54
Diffstat (limited to 'dev-php4')
-rw-r--r--dev-php4/pecl-memcache/ChangeLog6
-rw-r--r--dev-php4/pecl-memcache/Manifest5
-rw-r--r--dev-php4/pecl-memcache/files/config-zlib-det-fix.patch103
-rw-r--r--dev-php4/pecl-memcache/pecl-memcache-2.0.0.ebuild4
4 files changed, 9 insertions, 109 deletions
diff --git a/dev-php4/pecl-memcache/ChangeLog b/dev-php4/pecl-memcache/ChangeLog
index 4d82091eecc4..b223ffb64dd7 100644
--- a/dev-php4/pecl-memcache/ChangeLog
+++ b/dev-php4/pecl-memcache/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-php4/pecl-memcache
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php4/pecl-memcache/ChangeLog,v 1.7 2006/01/11 03:59:44 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php4/pecl-memcache/ChangeLog,v 1.8 2006/01/11 11:44:34 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 file and eutils inherit.
11 Jan 2006; Robin H. Johnson <robbat2@gentoo.org>
pecl-memcache-2.0.0.ebuild:
diff --git a/dev-php4/pecl-memcache/Manifest b/dev-php4/pecl-memcache/Manifest
index 8a342a1b323b..284fe874ee87 100644
--- a/dev-php4/pecl-memcache/Manifest
+++ b/dev-php4/pecl-memcache/Manifest
@@ -1,5 +1,4 @@
-MD5 b9226835e69becd0b93dc10ddf37d097 ChangeLog 1051
-MD5 7a4ae6237c651bc458cc5dd85224b5e3 files/config-zlib-det-fix.patch 3403
+MD5 d9c601e2e200b57648f85cf06b257aa1 ChangeLog 1213
MD5 2b340edcc01d9e1afddcf52d7cc5cb32 files/digest-pecl-memcache-2.0.0 62
MD5 c58d07ca1c1235bbad9bccaec96fc062 metadata.xml 157
-MD5 5f8082e47f09b2364c08f0be38da21f9 pecl-memcache-2.0.0.ebuild 780
+MD5 2e3ac5c297ffa5ab9ef21b7d4fba7352 pecl-memcache-2.0.0.ebuild 772
diff --git a/dev-php4/pecl-memcache/files/config-zlib-det-fix.patch b/dev-php4/pecl-memcache/files/config-zlib-det-fix.patch
deleted file mode 100644
index 5ce9eff569b6..000000000000
--- a/dev-php4/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-php4/pecl-memcache/pecl-memcache-2.0.0.ebuild b/dev-php4/pecl-memcache/pecl-memcache-2.0.0.ebuild
index 23ee2139c6a8..b5d043af6991 100644
--- a/dev-php4/pecl-memcache/pecl-memcache-2.0.0.ebuild
+++ b/dev-php4/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-php4/pecl-memcache/pecl-memcache-2.0.0.ebuild,v 1.3 2006/01/11 03:59:44 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php4/pecl-memcache/pecl-memcache-2.0.0.ebuild,v 1.4 2006/01/11 11:44:34 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."