aboutsummaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2022-12-25 19:34:18 +0000
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2022-12-25 19:36:42 +0000
commit0d310d700aa060b02feec9c7487893a983bf7098 (patch)
tree3d35d698e9c13e27e41a8cd9de8ff7839dcd7b66 /textproc
parent036685c034ba77a67fcdb0b7a18ed6ef5994d945 (diff)
downloadports-0d310d700aa060b02feec9c7487893a983bf7098.tar.gz
ports-0d310d700aa060b02feec9c7487893a983bf7098.zip
Diffstat (limited to 'textproc')
-rw-r--r--textproc/Makefile9
-rw-r--r--textproc/php74-ctype/Makefile9
-rw-r--r--textproc/php74-dom/Makefile9
-rw-r--r--textproc/php74-enchant/Makefile9
-rw-r--r--textproc/php74-pspell/Makefile9
-rw-r--r--textproc/php74-simplexml/Makefile9
-rw-r--r--textproc/php74-simplexml/files/patch-config.m442
-rw-r--r--textproc/php74-xml/Makefile9
-rw-r--r--textproc/php74-xml/files/patch-compat.c13
-rw-r--r--textproc/php74-xmlreader/Makefile9
-rw-r--r--textproc/php74-xmlwriter/Makefile9
-rw-r--r--textproc/php74-xsl/Makefile9
-rw-r--r--textproc/php74-xsl/files/patch-php_xsl.h11
13 files changed, 0 insertions, 156 deletions
diff --git a/textproc/Makefile b/textproc/Makefile
index 651719f13cbf..6dfe402c7852 100644
--- a/textproc/Makefile
+++ b/textproc/Makefile
@@ -1227,15 +1227,6 @@
SUBDIR += peco
SUBDIR += peg
SUBDIR += perl2html
- SUBDIR += php74-ctype
- SUBDIR += php74-dom
- SUBDIR += php74-enchant
- SUBDIR += php74-pspell
- SUBDIR += php74-simplexml
- SUBDIR += php74-xml
- SUBDIR += php74-xmlreader
- SUBDIR += php74-xmlwriter
- SUBDIR += php74-xsl
SUBDIR += php80-ctype
SUBDIR += php80-dom
SUBDIR += php80-enchant
diff --git a/textproc/php74-ctype/Makefile b/textproc/php74-ctype/Makefile
deleted file mode 100644
index c7bcb834f651..000000000000
--- a/textproc/php74-ctype/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-CATEGORIES= textproc
-
-MASTERDIR= ${.CURDIR}/../../lang/php74
-
-PKGNAMESUFFIX= -ctype
-
-TEST_TARGET= test
-
-.include "${MASTERDIR}/Makefile"
diff --git a/textproc/php74-dom/Makefile b/textproc/php74-dom/Makefile
deleted file mode 100644
index c8e8d81d938c..000000000000
--- a/textproc/php74-dom/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-CATEGORIES= textproc
-
-MASTERDIR= ${.CURDIR}/../../lang/php74
-
-PKGNAMESUFFIX= -dom
-
-TEST_TARGET= test
-
-.include "${MASTERDIR}/Makefile"
diff --git a/textproc/php74-enchant/Makefile b/textproc/php74-enchant/Makefile
deleted file mode 100644
index 679fc31334ce..000000000000
--- a/textproc/php74-enchant/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-CATEGORIES= textproc
-
-MASTERDIR= ${.CURDIR}/../../lang/php74
-
-PKGNAMESUFFIX= -enchant
-
-TEST_TARGET= test
-
-.include "${MASTERDIR}/Makefile"
diff --git a/textproc/php74-pspell/Makefile b/textproc/php74-pspell/Makefile
deleted file mode 100644
index 6f501ca4cda5..000000000000
--- a/textproc/php74-pspell/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-CATEGORIES= textproc
-
-MASTERDIR= ${.CURDIR}/../../lang/php74
-
-PKGNAMESUFFIX= -pspell
-
-TEST_TARGET= test
-
-.include "${MASTERDIR}/Makefile"
diff --git a/textproc/php74-simplexml/Makefile b/textproc/php74-simplexml/Makefile
deleted file mode 100644
index 504a24dd3fa3..000000000000
--- a/textproc/php74-simplexml/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-CATEGORIES= textproc
-
-MASTERDIR= ${.CURDIR}/../../lang/php74
-
-PKGNAMESUFFIX= -simplexml
-
-TEST_TARGET= test
-
-.include "${MASTERDIR}/Makefile"
diff --git a/textproc/php74-simplexml/files/patch-config.m4 b/textproc/php74-simplexml/files/patch-config.m4
deleted file mode 100644
index 88638f7dccf4..000000000000
--- a/textproc/php74-simplexml/files/patch-config.m4
+++ /dev/null
@@ -1,42 +0,0 @@
---- config.m4.orig 2019-08-06 06:54:07 UTC
-+++ config.m4
-@@ -4,8 +4,39 @@ PHP_ARG_ENABLE([simplexml],
- [Disable SimpleXML support])],
- [yes])
-
-+PHP_ARG_ENABLE([pcre-dir],
-+ [pcre install prefix],
-+ [AS_HELP_STRING([--with-pcre-dir],
-+ [SimpleXML: pcre install dir])],
-+ [no],
-+ [no])
-+
- if test "$PHP_SIMPLEXML" != "no"; then
-
-+ 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 "$PHP_LIBXML" = "no"; then
- AC_MSG_ERROR([SimpleXML extension requires LIBXML extension, add --with-libxml])
- fi
diff --git a/textproc/php74-xml/Makefile b/textproc/php74-xml/Makefile
deleted file mode 100644
index 5de8bb1dff1d..000000000000
--- a/textproc/php74-xml/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-CATEGORIES= textproc
-
-MASTERDIR= ${.CURDIR}/../../lang/php74
-
-PKGNAMESUFFIX= -xml
-
-TEST_TARGET= test
-
-.include "${MASTERDIR}/Makefile"
diff --git a/textproc/php74-xml/files/patch-compat.c b/textproc/php74-xml/files/patch-compat.c
deleted file mode 100644
index 02125961b20c..000000000000
--- a/textproc/php74-xml/files/patch-compat.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- compat.c.orig Tue Jul 20 10:55:02 2004
-+++ compat.c Tue Jul 20 10:55:55 2004
-@@ -16,6 +16,10 @@
- +----------------------------------------------------------------------+
- */
-
-+#ifdef HAVE_CONFIG_H
-+#include "config.h"
-+#endif
-+
- #include "php.h"
- #if defined(HAVE_LIBXML) && defined(HAVE_XML) && !defined(HAVE_LIBEXPAT)
- #include "expat_compat.h"
diff --git a/textproc/php74-xmlreader/Makefile b/textproc/php74-xmlreader/Makefile
deleted file mode 100644
index 9a52d8b7a275..000000000000
--- a/textproc/php74-xmlreader/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-CATEGORIES= textproc
-
-MASTERDIR= ${.CURDIR}/../../lang/php74
-
-PKGNAMESUFFIX= -xmlreader
-
-TEST_TARGET= test
-
-.include "${MASTERDIR}/Makefile"
diff --git a/textproc/php74-xmlwriter/Makefile b/textproc/php74-xmlwriter/Makefile
deleted file mode 100644
index 8bfe0bbcab59..000000000000
--- a/textproc/php74-xmlwriter/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-CATEGORIES= textproc
-
-MASTERDIR= ${.CURDIR}/../../lang/php74
-
-PKGNAMESUFFIX= -xmlwriter
-
-TEST_TARGET= test
-
-.include "${MASTERDIR}/Makefile"
diff --git a/textproc/php74-xsl/Makefile b/textproc/php74-xsl/Makefile
deleted file mode 100644
index d86ab265bfce..000000000000
--- a/textproc/php74-xsl/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-CATEGORIES= textproc
-
-MASTERDIR= ${.CURDIR}/../../lang/php74
-
-PKGNAMESUFFIX= -xsl
-
-TEST_TARGET= test
-
-.include "${MASTERDIR}/Makefile"
diff --git a/textproc/php74-xsl/files/patch-php_xsl.h b/textproc/php74-xsl/files/patch-php_xsl.h
deleted file mode 100644
index 9777187f8748..000000000000
--- a/textproc/php74-xsl/files/patch-php_xsl.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- php_xsl.h.orig Sun Jan 1 13:50:17 2006
-+++ php_xsl.h Tue Jan 17 16:23:10 2006
-@@ -43,7 +43,7 @@
- #include <libexslt/exsltconfig.h>
- #endif
-
--#include "../dom/xml_common.h"
-+#include "ext/dom/xml_common.h"
- #include "xsl_fe.h"
-
- #include <libxslt/extensions.h>