summaryrefslogtreecommitdiff
path: root/graphics/php4-gd
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2001-12-31 23:57:33 +0000
committerjlam <jlam@pkgsrc.org>2001-12-31 23:57:33 +0000
commit9c61d6e64cabcbdbaf90ebc7ad23c34d25f77a21 (patch)
tree60d1d408f58ec039e83c257921faf5fcf64fa98f /graphics/php4-gd
parent09aefc5b34b8e62e9380ec64acde063122907d73 (diff)
downloadpkgsrc-9c61d6e64cabcbdbaf90ebc7ad23c34d25f77a21.tar.gz
Update graphics/php4-gd to 4.1.0. Changes from version 4.0.6 include:
- Make ImageColorAt() and ImageColorsForIndex() work with TrueColor images. (Rasmus) - Added support for GD2 image type for ImageCreateFromString() (Jani) - Added ImageCreateFromGD(), ImageCreateFromGD2(), ImageCreateFromGD2part(), ImageGD() and ImageGD2() functions (Jani) - Added the IMG_ARC_ROUNDED option for the ImageFilledArc() function, which specified that the drawn curve should be rounded. (Sterling)
Diffstat (limited to 'graphics/php4-gd')
-rw-r--r--graphics/php4-gd/distinfo8
-rw-r--r--graphics/php4-gd/patches/patch-aa17
-rw-r--r--graphics/php4-gd/patches/patch-ab13
3 files changed, 3 insertions, 35 deletions
diff --git a/graphics/php4-gd/distinfo b/graphics/php4-gd/distinfo
index 4f7d65d08da..ebd87e88609 100644
--- a/graphics/php4-gd/distinfo
+++ b/graphics/php4-gd/distinfo
@@ -1,6 +1,4 @@
-$NetBSD: distinfo,v 1.2 2001/10/19 07:05:28 kei Exp $
+$NetBSD: distinfo,v 1.3 2001/12/31 23:57:33 jlam Exp $
-SHA1 (php-4.0.6.tar.gz) = 6544eb1085b916541af914a11074e9bb8a037a03
-Size (php-4.0.6.tar.gz) = 3157346 bytes
-SHA1 (patch-aa) = 3ce0b8f9d4a6c297c0bd3c1196a92391c7efa210
-SHA1 (patch-ab) = efe78dd6a9a680d9e91202d0f3fd9516be059f85
+SHA1 (php-4.1.0.tar.gz) = d8ce2c3b1dd9551980340d20064a1e939ef49431
+Size (php-4.1.0.tar.gz) = 3371385 bytes
diff --git a/graphics/php4-gd/patches/patch-aa b/graphics/php4-gd/patches/patch-aa
deleted file mode 100644
index 6cb20d57618..00000000000
--- a/graphics/php4-gd/patches/patch-aa
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2001/10/19 07:05:29 kei Exp $
-
---- config.m4.orig Mon Jun 4 10:36:47 2001
-+++ config.m4 Thu Oct 18 18:39:47 2001
-@@ -162,10 +162,10 @@
- ])
-
- AC_DEFUN(PHP_GD_TTSTR,[
-- PHP_ARG_ENABLE(gd-native-tt, whether to enable truetype string function in gd,
-+ PHP_ARG_ENABLE(gd-native-ttf, whether to enable truetype string function in gd,
- [ --enable-gd-native-ttf GD: Enable TrueType string function in gd])
-
-- if test "$PHP_GD_NATIVE_TT" = "yes"; then
-+ if test "$PHP_GD_NATIVE_TTF" = "yes"; then
- AC_DEFINE(USE_GD_IMGSTRTTF, 1, [ ])
- fi
- ])
diff --git a/graphics/php4-gd/patches/patch-ab b/graphics/php4-gd/patches/patch-ab
deleted file mode 100644
index c44a310df93..00000000000
--- a/graphics/php4-gd/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2001/10/19 07:05:29 kei Exp $
-
---- gd.c.orig Thu Oct 18 18:49:42 2001
-+++ gd.c Thu Oct 18 18:51:51 2001
-@@ -2662,7 +2662,7 @@
- fontname = (unsigned char *) Z_STRVAL_PP(FONTNAME);
-
- #ifdef USE_GD_IMGSTRTTF
--# if HAVE_LIBGD20 & HAVE_LIBFREETYPE
-+# if HAVE_LIBGD20 && HAVE_LIBFREETYPE
- error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str);
- # else
- error = gdImageStringTTF(im, brect, col, fontname, ptsize, angle, x, y, str);