summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2016-10-21 07:30:32 +0000
committerRene Ladan <rene@FreeBSD.org>2016-10-21 07:30:32 +0000
commit87a09e788fd713fb5c314f2fa9d9134fef902401 (patch)
tree2fb06aa538d7e0beddd857fc446f090c3bb788b8 /graphics
parentUnlink expired PHP5.5 ports. (diff)
Remove expired PHP5.5 ports.
Notes
Notes: svn path=/head/; revision=424382
Diffstat (limited to 'graphics')
-rw-r--r--graphics/php55-exif/Makefile11
-rw-r--r--graphics/php55-gd/Makefile11
-rw-r--r--graphics/php55-gd/files/patch-config.m411
-rw-r--r--graphics/php55-gd/files/patch-libgd_gd_webp.c18
4 files changed, 0 insertions, 51 deletions
diff --git a/graphics/php55-exif/Makefile b/graphics/php55-exif/Makefile
deleted file mode 100644
index 6b479d4b9a6d..000000000000
--- a/graphics/php55-exif/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-# Created by: Alex Dupre <ale@FreeBSD.org>
-# $FreeBSD$
-
-PORTREVISION= 1
-CATEGORIES= graphics
-
-MASTERDIR= ${.CURDIR}/../../lang/php55
-
-PKGNAMESUFFIX= -exif
-
-.include "${MASTERDIR}/Makefile"
diff --git a/graphics/php55-gd/Makefile b/graphics/php55-gd/Makefile
deleted file mode 100644
index 6ef693eb686d..000000000000
--- a/graphics/php55-gd/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-# Created by: Alex Dupre <ale@FreeBSD.org>
-# $FreeBSD$
-
-PORTREVISION= 3
-CATEGORIES= graphics
-
-MASTERDIR= ${.CURDIR}/../../lang/php55
-
-PKGNAMESUFFIX= -gd
-
-.include "${MASTERDIR}/Makefile"
diff --git a/graphics/php55-gd/files/patch-config.m4 b/graphics/php55-gd/files/patch-config.m4
deleted file mode 100644
index 13612e4a1eb9..000000000000
--- a/graphics/php55-gd/files/patch-config.m4
+++ /dev/null
@@ -1,11 +0,0 @@
---- config.m4.orig 2016-07-20 10:41:48.000000000 +0200
-+++ config.m4 2016-09-28 10:06:48.173731000 +0200
-@@ -228,7 +228,7 @@ AC_DEFUN([PHP_GD_T1LIB],[
- ],[
- AC_MSG_ERROR([Problem with libt1.(a|so). Please check config.log for more information.])
- ],[
-- -L$GD_T1_DIR/$PHP_LIBDIR
-+ -L$GD_T1_DIR/$PHP_LIBDIR -lm
- ])
- fi
- ])
diff --git a/graphics/php55-gd/files/patch-libgd_gd_webp.c b/graphics/php55-gd/files/patch-libgd_gd_webp.c
deleted file mode 100644
index b0c1419e022b..000000000000
--- a/graphics/php55-gd/files/patch-libgd_gd_webp.c
+++ /dev/null
@@ -1,18 +0,0 @@
---- libgd/gd_webp.c.orig 2016-09-28 10:07:06.092196000 +0200
-+++ libgd/gd_webp.c 2016-09-28 10:08:12.429030000 +0200
-@@ -180,6 +180,15 @@ void gdImageWebpCtx (gdImagePtr im, gdIO
- /* Conversion to Y,U,V buffer */
- yuv_width = (width + 1) >> 1;
- yuv_height = (height + 1) >> 1;
-+
-+ if (overflow2(width, height)) {
-+ return;
-+ }
-+ /* simplification possible, because WebP must not be larger than 16384**2 */
-+ if (overflow2(width * height, 2 * sizeof(unsigned char))) {
-+ return;
-+ }
-+
- yuv_nbytes = width * height + 2 * yuv_width * yuv_height;
-
- if ((Y = (unsigned char *)gdCalloc(yuv_nbytes, sizeof(unsigned char))) == NULL) {