diff options
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 9 | ||||
-rw-r--r-- | devel/php53-gettext/Makefile | 14 | ||||
-rw-r--r-- | devel/php53-json/Makefile | 14 | ||||
-rw-r--r-- | devel/php53-pcntl/Makefile | 14 | ||||
-rw-r--r-- | devel/php53-readline/Makefile | 14 | ||||
-rw-r--r-- | devel/php53-readline/files/patch-config.m4 | 38 | ||||
-rw-r--r-- | devel/php53-shmop/Makefile | 14 | ||||
-rw-r--r-- | devel/php53-sysvmsg/Makefile | 14 | ||||
-rw-r--r-- | devel/php53-sysvsem/Makefile | 14 | ||||
-rw-r--r-- | devel/php53-sysvshm/Makefile | 14 | ||||
-rw-r--r-- | devel/php53-tokenizer/Makefile | 14 |
11 files changed, 173 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 95246ae6f848..18e1b3a1c747 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -3006,6 +3006,15 @@ SUBDIR += php52-sysvsem SUBDIR += php52-sysvshm SUBDIR += php52-tokenizer + SUBDIR += php53-gettext + SUBDIR += php53-json + SUBDIR += php53-pcntl + SUBDIR += php53-readline + SUBDIR += php53-shmop + SUBDIR += php53-sysvmsg + SUBDIR += php53-sysvsem + SUBDIR += php53-sysvshm + SUBDIR += php53-tokenizer SUBDIR += phpbt SUBDIR += phpsh SUBDIR += phptags diff --git a/devel/php53-gettext/Makefile b/devel/php53-gettext/Makefile new file mode 100644 index 000000000000..346a4cde21ef --- /dev/null +++ b/devel/php53-gettext/Makefile @@ -0,0 +1,14 @@ +# New ports collection makefile for: php53-gettext +# Date created: 12 Apr 2012 +# Whom: Florian Smeets <flo@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php53 + +PKGNAMESUFFIX= -gettext + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php53-json/Makefile b/devel/php53-json/Makefile new file mode 100644 index 000000000000..d631e5a85514 --- /dev/null +++ b/devel/php53-json/Makefile @@ -0,0 +1,14 @@ +# New ports collection makefile for: php53-json +# Date created: 12 Apr 2012 +# Whom: Florian Smeets <flo@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php53 + +PKGNAMESUFFIX= -json + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php53-pcntl/Makefile b/devel/php53-pcntl/Makefile new file mode 100644 index 000000000000..e3d23933362a --- /dev/null +++ b/devel/php53-pcntl/Makefile @@ -0,0 +1,14 @@ +# New ports collection makefile for: php53-pcntl +# Date created: 12 Apr 2012 +# Whom: Florian Smeets <flo@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php53 + +PKGNAMESUFFIX= -pcntl + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php53-readline/Makefile b/devel/php53-readline/Makefile new file mode 100644 index 000000000000..ef0f0e6d1106 --- /dev/null +++ b/devel/php53-readline/Makefile @@ -0,0 +1,14 @@ +# New ports collection makefile for: php53-readline +# Date created: 12 Apr 2012 +# Whom: Florian Smeets <flo@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php53 + +PKGNAMESUFFIX= -readline + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php53-readline/files/patch-config.m4 b/devel/php53-readline/files/patch-config.m4 new file mode 100644 index 000000000000..b0b2bb521bc7 --- /dev/null +++ b/devel/php53-readline/files/patch-config.m4 @@ -0,0 +1,38 @@ +--- config.m4.orig 2009-08-04 13:20:49.000000000 +0200 ++++ config.m4 2009-09-22 11:13:12.000000000 +0200 +@@ -5,13 +5,8 @@ + PHP_ARG_WITH(libedit,for libedit readline replacement, + [ --with-libedit[=DIR] Include libedit readline replacement (CLI/CGI only)]) + +-if test "$PHP_LIBEDIT" = "no"; then + PHP_ARG_WITH(readline,for readline support, + [ --with-readline[=DIR] Include readline support (CLI/CGI only)]) +-else +- dnl "register" the --with-readline option to preven invalid "unknown configure option" warning +- php_with_readline=no +-fi + + if test "$PHP_READLINE" && test "$PHP_READLINE" != "no"; then + for i in $PHP_READLINE /usr/local /usr; do +@@ -60,6 +55,13 @@ + -L$READLINE_DIR/$PHP_LIBDIR $PHP_READLINE_LIBS + ]) + ++ PHP_CHECK_LIBRARY(readline, rl_completion_matches, ++ [ ++ AC_DEFINE(HAVE_RL_COMPLETION_MATCHES, 1, [ ]) ++ ],[],[ ++ -L$READLINE_DIR/$PHP_LIBDIR $PHP_READLINE_LIBS ++ ]) ++ + AC_DEFINE(HAVE_LIBREADLINE, 1, [ ]) + + elif test "$PHP_LIBEDIT" != "no"; then +@@ -97,7 +99,6 @@ + fi + + if test "$PHP_READLINE" != "no" || test "$PHP_LIBEDIT" != "no"; then +- AC_CHECK_FUNCS([rl_completion_matches]) + PHP_NEW_EXTENSION(readline, readline.c, $ext_shared, cli) + PHP_SUBST(READLINE_SHARED_LIBADD) + fi diff --git a/devel/php53-shmop/Makefile b/devel/php53-shmop/Makefile new file mode 100644 index 000000000000..f9602981340a --- /dev/null +++ b/devel/php53-shmop/Makefile @@ -0,0 +1,14 @@ +# New ports collection makefile for: php53-shmop +# Date created: 12 Apr 2012 +# Whom: Florian Smeets <flo@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php53 + +PKGNAMESUFFIX= -shmop + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php53-sysvmsg/Makefile b/devel/php53-sysvmsg/Makefile new file mode 100644 index 000000000000..be08a6eba55c --- /dev/null +++ b/devel/php53-sysvmsg/Makefile @@ -0,0 +1,14 @@ +# New ports collection makefile for: php53-sysvmsg +# Date created: 12 Apr 2012 +# Whom: Florian Smeets <flo@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php53 + +PKGNAMESUFFIX= -sysvmsg + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php53-sysvsem/Makefile b/devel/php53-sysvsem/Makefile new file mode 100644 index 000000000000..b3efede8ea3d --- /dev/null +++ b/devel/php53-sysvsem/Makefile @@ -0,0 +1,14 @@ +# New ports collection makefile for: php53-sysvsem +# Date created: 12 Apr 2012 +# Whom: Florian Smeets <flo@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php53 + +PKGNAMESUFFIX= -sysvsem + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php53-sysvshm/Makefile b/devel/php53-sysvshm/Makefile new file mode 100644 index 000000000000..808971ce3985 --- /dev/null +++ b/devel/php53-sysvshm/Makefile @@ -0,0 +1,14 @@ +# New ports collection makefile for: php53-sysvshm +# Date created: 12 Apr 2012 +# Whom: Florian Smeets <flo@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php53 + +PKGNAMESUFFIX= -sysvshm + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php53-tokenizer/Makefile b/devel/php53-tokenizer/Makefile new file mode 100644 index 000000000000..96e07bffc4b9 --- /dev/null +++ b/devel/php53-tokenizer/Makefile @@ -0,0 +1,14 @@ +# New ports collection makefile for: php53-tokenizer +# Date created: 12 Apr 2012 +# Whom: Florian Smeets <flo@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php53 + +PKGNAMESUFFIX= -tokenizer + +.include "${MASTERDIR}/Makefile" |