aboutsummaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2016-10-21 07:30:32 +0000
committerRene Ladan <rene@FreeBSD.org>2016-10-21 07:30:32 +0000
commit87a09e788fd713fb5c314f2fa9d9134fef902401 (patch)
tree2fb06aa538d7e0beddd857fc446f090c3bb788b8 /archivers
parentbd24894ca3f4654ff405845231b64c61c378d9f6 (diff)
downloadports-87a09e788fd713fb5c314f2fa9d9134fef902401.tar.gz
ports-87a09e788fd713fb5c314f2fa9d9134fef902401.zip
Notes
Diffstat (limited to 'archivers')
-rw-r--r--archivers/php55-bz2/Makefile11
-rw-r--r--archivers/php55-phar/Makefile11
-rw-r--r--archivers/php55-phar/files/patch-config.m441
-rw-r--r--archivers/php55-phar/files/patch-phar.c11
-rw-r--r--archivers/php55-zip/Makefile11
-rw-r--r--archivers/php55-zip/files/patch-config.m410
-rw-r--r--archivers/php55-zlib/Makefile11
-rw-r--r--archivers/php55-zlib/files/patch-zlib.c10
8 files changed, 0 insertions, 116 deletions
diff --git a/archivers/php55-bz2/Makefile b/archivers/php55-bz2/Makefile
deleted file mode 100644
index 5cd5ae7ad9a8..000000000000
--- a/archivers/php55-bz2/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-# Created by: Alex Dupre <ale@FreeBSD.org>
-# $FreeBSD$
-
-PORTREVISION= 1
-CATEGORIES= archivers
-
-MASTERDIR= ${.CURDIR}/../../lang/php55
-
-PKGNAMESUFFIX= -bz2
-
-.include "${MASTERDIR}/Makefile"
diff --git a/archivers/php55-phar/Makefile b/archivers/php55-phar/Makefile
deleted file mode 100644
index 9419f1881721..000000000000
--- a/archivers/php55-phar/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-# Created by: Alex Dupre <ale@FreeBSD.org>
-# $FreeBSD$
-
-PORTREVISION= 1
-CATEGORIES= archivers
-
-MASTERDIR= ${.CURDIR}/../../lang/php55
-
-PKGNAMESUFFIX= -phar
-
-.include "${MASTERDIR}/Makefile"
diff --git a/archivers/php55-phar/files/patch-config.m4 b/archivers/php55-phar/files/patch-config.m4
deleted file mode 100644
index 5e5d281265b7..000000000000
--- a/archivers/php55-phar/files/patch-config.m4
+++ /dev/null
@@ -1,41 +0,0 @@
---- config.m4.orig 2016-06-21 11:11:59 UTC
-+++ config.m4
-@@ -4,8 +4,38 @@ dnl config.m4 for extension phar
- PHP_ARG_ENABLE(phar, for phar archive support,
- [ --disable-phar Disable phar support], yes)
-
-+PHP_ARG_WITH(pcre-dir, pcre install prefix,
-+[ --with-pcre-dir PHAR: pcre install prefix], no, no)
-+
-+
- if test "$PHP_PHAR" != "no"; then
-+
-+ dnl This is PECL build, check if bundled PCRE library is used
-+ old_CPPFLAGS=$CPPFLAGS
-+ CPPFLAGS=$INCLUDES
-+ AC_EGREP_CPP(yes,[
-+#include <main/php_config.h>
-+#if defined(HAVE_BUNDLED_PCRE) && !defined(COMPILE_DL_PCRE)
-+yes
-+#endif
-+ ],[
-+ PHP_PCRE_REGEX=yes
-+ ],[
-+ AC_EGREP_CPP(yes,[
-+#include <main/php_config.h>
-+#if defined(HAVE_PCRE) && !defined(COMPILE_DL_PCRE)
-+yes
-+#endif
-+ ],[
-+ PHP_PCRE_REGEX=pecl
-+ PHP_ADD_INCLUDE($PHP_PCRE_DIR/include)
-+ ],[
-+ PHP_PCRE_REGEX=no
-+ ])
-+ ])
-+
- PHP_NEW_EXTENSION(phar, util.c tar.c zip.c stream.c func_interceptors.c dirstream.c phar.c phar_object.c phar_path_check.c, $ext_shared)
-+ PHP_HASH=yes
- AC_MSG_CHECKING([for phar openssl support])
- if test "$PHP_HASH_SHARED" != "yes"; then
- if test "$PHP_HASH" != "no"; then
diff --git a/archivers/php55-phar/files/patch-phar.c b/archivers/php55-phar/files/patch-phar.c
deleted file mode 100644
index ae3b3230e526..000000000000
--- a/archivers/php55-phar/files/patch-phar.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- phar.c.orig 2016-06-21 11:11:59 UTC
-+++ phar.c
-@@ -3651,7 +3651,7 @@ static const zend_module_dep phar_deps[]
- ZEND_MOD_OPTIONAL("openssl")
- ZEND_MOD_OPTIONAL("zlib")
- ZEND_MOD_OPTIONAL("standard")
--#if defined(HAVE_HASH) && !defined(COMPILE_DL_HASH)
-+#if defined(HAVE_HASH)
- ZEND_MOD_REQUIRED("hash")
- #endif
- #if HAVE_SPL
diff --git a/archivers/php55-zip/Makefile b/archivers/php55-zip/Makefile
deleted file mode 100644
index 59c924adf758..000000000000
--- a/archivers/php55-zip/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-# Created by: Alex Dupre <ale@FreeBSD.org>
-# $FreeBSD$
-
-PORTREVISION= 1
-CATEGORIES= archivers
-
-MASTERDIR= ${.CURDIR}/../../lang/php55
-
-PKGNAMESUFFIX= -zip
-
-.include "${MASTERDIR}/Makefile"
diff --git a/archivers/php55-zip/files/patch-config.m4 b/archivers/php55-zip/files/patch-config.m4
deleted file mode 100644
index fdcaae50fbc0..000000000000
--- a/archivers/php55-zip/files/patch-config.m4
+++ /dev/null
@@ -1,10 +0,0 @@
---- config.m4.orig 2016-06-21 11:11:59 UTC
-+++ config.m4
-@@ -65,6 +65,7 @@ yes
- #endif
- ],[
- PHP_PCRE_REGEX=pecl
-+ PHP_ADD_INCLUDE($PHP_PCRE_DIR/include)
- ],[
- PHP_PCRE_REGEX=no
- ])
diff --git a/archivers/php55-zlib/Makefile b/archivers/php55-zlib/Makefile
deleted file mode 100644
index 26e11c201791..000000000000
--- a/archivers/php55-zlib/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-# Created by: Alex Dupre <ale@FreeBSD.org>
-# $FreeBSD$
-
-PORTREVISION= 1
-CATEGORIES= archivers
-
-MASTERDIR= ${.CURDIR}/../../lang/php55
-
-PKGNAMESUFFIX= -zlib
-
-.include "${MASTERDIR}/Makefile"
diff --git a/archivers/php55-zlib/files/patch-zlib.c b/archivers/php55-zlib/files/patch-zlib.c
deleted file mode 100644
index 62d5d711db17..000000000000
--- a/archivers/php55-zlib/files/patch-zlib.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- zlib.c.orig 2016-06-21 11:11:59 UTC
-+++ zlib.c
-@@ -977,6 +977,7 @@ static PHP_MSHUTDOWN_FUNCTION(zlib)
- /* {{{ PHP_RINIT_FUNCTION */
- static PHP_RINIT_FUNCTION(zlib)
- {
-+ ZLIBG(output_compression) = 0;
- ZLIBG(compression_coding) = 0;
- if (!ZLIBG(handler_registered)) {
- ZLIBG(output_compression) = ZLIBG(output_compression_default);