diff options
author | rene <rene@FreeBSD.org> | 2014-03-01 08:06:29 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2014-03-01 08:06:29 +0800 |
commit | 076592a92b4a7e010e8a6b2644ae232408c10c3b (patch) | |
tree | a82aa9cd34a90c5daecd9ec479f5a85b36141796 /Mk | |
parent | 0282d1525716be347b881ec0b2f6e2f10e232220 (diff) | |
download | freebsd-ports-gnome-076592a92b4a7e010e8a6b2644ae232408c10c3b.tar.gz freebsd-ports-gnome-076592a92b4a7e010e8a6b2644ae232408c10c3b.tar.zst freebsd-ports-gnome-076592a92b4a7e010e8a6b2644ae232408c10c3b.zip |
PHP 5.2 has reached it end-of-life in the FreeBSD Ports Tree, time
to say goodbye. Upstream unsupported it since 2011-01-06 (see
http://php.net/eol.php )
Strip PHP 5.2 out of Mk/bsd.php.mk
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.php.mk | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Mk/bsd.php.mk b/Mk/bsd.php.mk index 1e5bd2d41933..bf3e60e13cc4 100644 --- a/Mk/bsd.php.mk +++ b/Mk/bsd.php.mk @@ -54,9 +54,7 @@ PHP_EXT_DIR!= ${PHPBASE}/bin/php-config --extension-dir | ${SED} -ne 's,^${PHPBA DEFAULT_PHP_VER?= ${PHP_DEFAULT:S/.//} PHP_VER?= ${DEFAULT_PHP_VER} -.if ${PHP_VER} == 52 -PHP_EXT_DIR= 20060613 -.elif ${PHP_VER} == 53 +.if ${PHP_VER} == 53 PHP_EXT_DIR= 20090626 PHP_EXT_INC= pcre spl .elif ${PHP_VER} == 55 @@ -281,7 +279,6 @@ _USE_PHP_ALL= apc bcmath bitset bz2 calendar ctype curl dba dom \ tidy tokenizer wddx xml xmlreader xmlrpc xmlwriter xsl zip zlib # version specific components _USE_PHP_VER5= ${_USE_PHP_ALL} phar sqlite3 -_USE_PHP_VER52= ${_USE_PHP_ALL} dbase mhash ming ncurses oci8 sqlite _USE_PHP_VER53= ${_USE_PHP_ALL} phar sqlite sqlite3 _USE_PHP_VER55= ${_USE_PHP_ALL} phar sqlite3 @@ -296,11 +293,7 @@ dba_DEPENDS= databases/php${PHP_VER}-dba dbase_DEPENDS= databases/php${PHP_VER}-dbase dom_DEPENDS= textproc/php${PHP_VER}-dom exif_DEPENDS= graphics/php${PHP_VER}-exif -.if ${PHP_VER} == 52 -fileinfo_DEPENDS= sysutils/pecl-fileinfo -.else fileinfo_DEPENDS= sysutils/php${PHP_VER}-fileinfo -.endif filter_DEPENDS= security/php${PHP_VER}-filter ftp_DEPENDS= ftp/php${PHP_VER}-ftp gd_DEPENDS= graphics/php${PHP_VER}-gd |