diff options
author | rene <rene@FreeBSD.org> | 2016-02-15 03:21:31 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2016-02-15 03:21:31 +0800 |
commit | fcda9947bb0106a2b6a81862fe249f8cf0fe0dd3 (patch) | |
tree | 8ee58acab1b0a9fe8d1b1eb86093bf1a0d151f63 /converters | |
parent | 5bb51cc37e4c2b3aa67f6bdc9da7ce2b7f18b36e (diff) | |
download | freebsd-ports-graphics-fcda9947bb0106a2b6a81862fe249f8cf0fe0dd3.tar.gz freebsd-ports-graphics-fcda9947bb0106a2b6a81862fe249f8cf0fe0dd3.tar.zst freebsd-ports-graphics-fcda9947bb0106a2b6a81862fe249f8cf0fe0dd3.zip |
Remove PHP 5.4 from the Ports Tree, it expired upstream in 2015-Q3 and the
ports expired last month.
Adjust Mk/bsd.php.mk
Reviewed by: antoine, marino
Approved by: portmgr (antoine)
Differential Revision: https://reviews.freebsd.org/D5278
Diffstat (limited to 'converters')
-rw-r--r-- | converters/Makefile | 3 | ||||
-rw-r--r-- | converters/php5-iconv/Makefile | 10 | ||||
-rw-r--r-- | converters/php5-mbstring/Makefile | 11 | ||||
-rw-r--r-- | converters/php5-mbstring/files/patch-config.m4 | 51 | ||||
-rw-r--r-- | converters/php5-recode/Makefile | 10 |
5 files changed, 0 insertions, 85 deletions
diff --git a/converters/Makefile b/converters/Makefile index a859bdfe58b..c42ef3b7147 100644 --- a/converters/Makefile +++ b/converters/Makefile @@ -134,9 +134,6 @@ SUBDIR += pecl-fribidi SUBDIR += pecl-igbinary SUBDIR += php5-bsdconv - SUBDIR += php5-iconv - SUBDIR += php5-mbstring - SUBDIR += php5-recode SUBDIR += php55-iconv SUBDIR += php55-mbstring SUBDIR += php55-recode diff --git a/converters/php5-iconv/Makefile b/converters/php5-iconv/Makefile deleted file mode 100644 index 37db5b190ff..00000000000 --- a/converters/php5-iconv/Makefile +++ /dev/null @@ -1,10 +0,0 @@ -# Created by: Alex Dupre <ale@FreeBSD.org> -# $FreeBSD$ - -CATEGORIES= converters - -MASTERDIR= ${.CURDIR}/../../lang/php5 - -PKGNAMESUFFIX= -iconv - -.include "${MASTERDIR}/Makefile" diff --git a/converters/php5-mbstring/Makefile b/converters/php5-mbstring/Makefile deleted file mode 100644 index 0eb4fa1b47e..00000000000 --- a/converters/php5-mbstring/Makefile +++ /dev/null @@ -1,11 +0,0 @@ -# Created by: Alex Dupre <ale@FreeBSD.org> -# $FreeBSD$ - -PORTREVISION= 1 -CATEGORIES= converters - -MASTERDIR= ${.CURDIR}/../../lang/php5 - -PKGNAMESUFFIX= -mbstring - -.include "${MASTERDIR}/Makefile" diff --git a/converters/php5-mbstring/files/patch-config.m4 b/converters/php5-mbstring/files/patch-config.m4 deleted file mode 100644 index 026798f26a5..00000000000 --- a/converters/php5-mbstring/files/patch-config.m4 +++ /dev/null @@ -1,51 +0,0 @@ ---- config.m4.orig 2009-11-25 02:30:06.000000000 +0100 -+++ config.m4 2010-04-12 09:59:54.000000000 +0200 -@@ -43,6 +43,30 @@ - PHP_ADD_INCLUDE([$ext_builddir/$dir]) - done - -+ 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 -+ ]) -+ ]) -+ - if test "$ext_shared" = "no"; then - PHP_ADD_SOURCES(PHP_EXT_DIR(mbstring), $PHP_MBSTRING_BASE_SOURCES) - out="php_config.h" -@@ -80,7 +104,6 @@ - int foo(int x, ...) { - va_list va; - va_start(va, x); -- va_arg(va, int); - va_arg(va, char *); - va_arg(va, double); - return 0; -@@ -347,6 +370,9 @@ - [ --with-onig[=DIR] MBSTRING: Use external oniguruma. DIR is the oniguruma install prefix. - If DIR is not set, the bundled oniguruma will be used], no, no) - -+PHP_ARG_WITH(pcre-dir, pcre install prefix, -+[ --with-pcre-dir MBSTRING: pcre install prefix], no, no) -+ - if test "$PHP_MBSTRING" != "no"; then - AC_DEFINE([HAVE_MBSTRING],1,[whether to have multibyte string support]) - diff --git a/converters/php5-recode/Makefile b/converters/php5-recode/Makefile deleted file mode 100644 index 0014dee8f5f..00000000000 --- a/converters/php5-recode/Makefile +++ /dev/null @@ -1,10 +0,0 @@ -# Created by: Alex Dupre <ale@FreeBSD.org> -# $FreeBSD$ - -CATEGORIES= converters - -MASTERDIR= ${.CURDIR}/../../lang/php5 - -PKGNAMESUFFIX= -recode - -.include "${MASTERDIR}/Makefile" |