diff options
author | Rene Ladan <rene@FreeBSD.org> | 2016-02-14 19:21:31 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2016-02-14 19:21:31 +0000 |
commit | d5ce1f73bc9d396f962ccc0f312c1f1e1ac50862 (patch) | |
tree | 8ee58acab1b0a9fe8d1b1eb86093bf1a0d151f63 /graphics/php5-gd | |
parent | Correct URL. (diff) |
Remove PHP 5.4 from the Ports Tree, it expired upstream in 2015-Q3 and the
ports expired last month.
Adjust Mk/bsd.php.mk
Reviewed by: antoine, marino
Approved by: portmgr (antoine)
Differential Revision: https://reviews.freebsd.org/D5278
Notes
Notes:
svn path=/head/; revision=408884
Diffstat (limited to 'graphics/php5-gd')
-rw-r--r-- | graphics/php5-gd/Makefile | 11 | ||||
-rw-r--r-- | graphics/php5-gd/files/patch-config.m4 | 11 | ||||
-rw-r--r-- | graphics/php5-gd/files/patch-libgd_webpimg.c | 29 |
3 files changed, 0 insertions, 51 deletions
diff --git a/graphics/php5-gd/Makefile b/graphics/php5-gd/Makefile deleted file mode 100644 index e4ad86b5221c..000000000000 --- a/graphics/php5-gd/Makefile +++ /dev/null @@ -1,11 +0,0 @@ -# Created by: Alex Dupre <ale@FreeBSD.org> -# $FreeBSD$ - -PORTREVISION= 1 -CATEGORIES= graphics - -MASTERDIR= ${.CURDIR}/../../lang/php5 - -PKGNAMESUFFIX= -gd - -.include "${MASTERDIR}/Makefile" diff --git a/graphics/php5-gd/files/patch-config.m4 b/graphics/php5-gd/files/patch-config.m4 deleted file mode 100644 index a06ce45de5cc..000000000000 --- a/graphics/php5-gd/files/patch-config.m4 +++ /dev/null @@ -1,11 +0,0 @@ ---- config.m4.orig 2013-12-10 20:32:43.000000000 +0100 -+++ config.m4 2013-12-24 21:02:03.000000000 +0100 -@@ -241,7 +241,7 @@ - ],[ - 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/php5-gd/files/patch-libgd_webpimg.c b/graphics/php5-gd/files/patch-libgd_webpimg.c deleted file mode 100644 index d1d74cd0e7a6..000000000000 --- a/graphics/php5-gd/files/patch-libgd_webpimg.c +++ /dev/null @@ -1,29 +0,0 @@ -Adjust to libvpx 1.4.0 until the code is removed. - -https://chromium.googlesource.com/webm/libvpx/+/9cdaa3d%5E!/ -https://bitbucket.org/libgd/gd-libgd/commits/824a3aa - ---- libgd/webpimg.c.orig 2013-06-25 09:58:23 UTC -+++ libgd/webpimg.c -@@ -711,14 +711,14 @@ static WebPResult VPXEncode(const uint8* - codec_ctl(&enc, VP8E_SET_STATIC_THRESHOLD, 0); - codec_ctl(&enc, VP8E_SET_TOKEN_PARTITIONS, 2); - -- vpx_img_wrap(&img, IMG_FMT_I420, -+ vpx_img_wrap(&img, VPX_IMG_FMT_I420, - y_width, y_height, 16, (uint8*)(Y)); -- img.planes[PLANE_Y] = (uint8*)(Y); -- img.planes[PLANE_U] = (uint8*)(U); -- img.planes[PLANE_V] = (uint8*)(V); -- img.stride[PLANE_Y] = y_stride; -- img.stride[PLANE_U] = uv_stride; -- img.stride[PLANE_V] = uv_stride; -+ img.planes[VPX_PLANE_Y] = (uint8*)(Y); -+ img.planes[VPX_PLANE_U] = (uint8*)(U); -+ img.planes[VPX_PLANE_V] = (uint8*)(V); -+ img.stride[VPX_PLANE_Y] = y_stride; -+ img.stride[VPX_PLANE_U] = uv_stride; -+ img.stride[VPX_PLANE_V] = uv_stride; - - res = vpx_codec_encode(&enc, &img, 0, 1, 0, VPX_DL_BEST_QUALITY); - |