diff options
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 4 | ||||
-rw-r--r-- | www/mod_php84/Makefile | 18 | ||||
-rw-r--r-- | www/php84-opcache/Makefile | 11 | ||||
-rw-r--r-- | www/php84-session/Makefile | 7 | ||||
-rw-r--r-- | www/php84-tidy/Makefile | 7 |
5 files changed, 47 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index ac8533e36ce9..582b4d3e41c4 100644 --- a/www/Makefile +++ b/www/Makefile @@ -405,6 +405,7 @@ SUBDIR += mod_php81 SUBDIR += mod_php82 SUBDIR += mod_php83 + SUBDIR += mod_php84 SUBDIR += mod_proctitle SUBDIR += mod_qos SUBDIR += mod_realdoc @@ -1401,6 +1402,9 @@ SUBDIR += php83-opcache SUBDIR += php83-session SUBDIR += php83-tidy + SUBDIR += php84-opcache + SUBDIR += php84-session + SUBDIR += php84-tidy SUBDIR += phpbb3 SUBDIR += phpfpmtop SUBDIR += phpgroupware diff --git a/www/mod_php84/Makefile b/www/mod_php84/Makefile new file mode 100644 index 000000000000..1ee419ec5ebd --- /dev/null +++ b/www/mod_php84/Makefile @@ -0,0 +1,18 @@ +CATEGORIES= www devel +PKGNAMEPREFIX= mod_ + +MAINTAINER= bofh@FreeBSD.org + +CONFLICTS_INSTALL= mod_php[0-9][0-9] + +MASTERDIR= ${.CURDIR}/../../lang/php84 + +OPTIONS_DEFINE= AP2FILTER +OPTIONS_EXCLUDE= CGI CLI EMBED FPM + +AP2FILTER_DESC= Use Apache 2.x filter interface (experimental) + +AP2FILTER_CONFIGURE_ON=--with-apxs2filter=${APXS} +AP2FILTER_CONFIGURE_OFF=--with-apxs2=${APXS} + +.include "${MASTERDIR}/Makefile" diff --git a/www/php84-opcache/Makefile b/www/php84-opcache/Makefile new file mode 100644 index 000000000000..3a08a1e576c2 --- /dev/null +++ b/www/php84-opcache/Makefile @@ -0,0 +1,11 @@ +CATEGORIES= www + +PKGNAMESUFFIX= -opcache + +BROKEN= Missing header files which will be fixed in next version + +USES= php:zend,noflavors + +MASTERDIR= ${.CURDIR}/../../lang/php84 + +.include "${MASTERDIR}/Makefile" diff --git a/www/php84-session/Makefile b/www/php84-session/Makefile new file mode 100644 index 000000000000..0ba5f843d21d --- /dev/null +++ b/www/php84-session/Makefile @@ -0,0 +1,7 @@ +CATEGORIES= www + +MASTERDIR= ${.CURDIR}/../../lang/php84 + +PKGNAMESUFFIX= -session + +.include "${MASTERDIR}/Makefile" diff --git a/www/php84-tidy/Makefile b/www/php84-tidy/Makefile new file mode 100644 index 000000000000..ab6170533940 --- /dev/null +++ b/www/php84-tidy/Makefile @@ -0,0 +1,7 @@ +CATEGORIES= www + +MASTERDIR= ${.CURDIR}/../../lang/php84 + +PKGNAMESUFFIX= -tidy + +.include "${MASTERDIR}/Makefile" |