diff options
author | Torsten Zuehlsdorff <tz@FreeBSD.org> | 2019-09-20 12:21:11 +0000 |
---|---|---|
committer | Torsten Zuehlsdorff <tz@FreeBSD.org> | 2019-09-20 12:21:11 +0000 |
commit | 7aca2531e2d785929c4477143e265a8d9b0b516b (patch) | |
tree | 5eb143508ff1769e64395b54d8a3b09e1576fba0 /ftp | |
parent | 2a5ef470852066fb4e7c665bc1bb5be0b206d82b (diff) |
Notes
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/Makefile | 2 | ||||
-rw-r--r-- | ftp/php74-curl/Makefile | 11 | ||||
-rw-r--r-- | ftp/php74-ftp/Makefile | 15 |
3 files changed, 28 insertions, 0 deletions
diff --git a/ftp/Makefile b/ftp/Makefile index cca49fa851ed..e16ef9b6e802 100644 --- a/ftp/Makefile +++ b/ftp/Makefile @@ -67,6 +67,8 @@ SUBDIR += php72-ftp SUBDIR += php73-curl SUBDIR += php73-ftp + SUBDIR += php74-curl + SUBDIR += php74-ftp SUBDIR += phpwebftp SUBDIR += proftpd SUBDIR += proftpd-mod_vroot diff --git a/ftp/php74-curl/Makefile b/ftp/php74-curl/Makefile new file mode 100644 index 000000000000..e0142d623227 --- /dev/null +++ b/ftp/php74-curl/Makefile @@ -0,0 +1,11 @@ +# $FreeBSD$ + +CATEGORIES= ftp + +MASTERDIR= ${.CURDIR}/../../lang/php74 + +PKGNAMESUFFIX= -curl + +TEST_TARGET= test + +.include "${MASTERDIR}/Makefile" diff --git a/ftp/php74-ftp/Makefile b/ftp/php74-ftp/Makefile new file mode 100644 index 000000000000..9df9e8648c2f --- /dev/null +++ b/ftp/php74-ftp/Makefile @@ -0,0 +1,15 @@ +# $FreeBSD$ + +CATEGORIES= ftp + +MASTERDIR= ${.CURDIR}/../../lang/php74 + +PKGNAMESUFFIX= -ftp + +TEST_TARGET= test + +post-patch: + @${REINPLACE_CMD} s/HAVE_OPENSSL_EXT/__FreeBSD__/ \ + ${WRKSRC}/ftp.* ${WRKSRC}/php_ftp.* + +.include "${MASTERDIR}/Makefile" |