diff options
author | ijliao <ijliao@FreeBSD.org> | 2005-08-30 11:12:38 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2005-08-30 11:12:38 +0800 |
commit | 710969f76b3662fe6cf596d091abeec1c8bc7a12 (patch) | |
tree | 7cbdab77b70d2253fd7860eb42082b9a936163b4 /graphics | |
parent | 13f8d13b869e8c153c369b3d8f55a33937e0fe50 (diff) | |
download | freebsd-ports-gnome-710969f76b3662fe6cf596d091abeec1c8bc7a12.tar.gz freebsd-ports-gnome-710969f76b3662fe6cf596d091abeec1c8bc7a12.tar.zst freebsd-ports-gnome-710969f76b3662fe6cf596d091abeec1c8bc7a12.zip |
upgrade to 5.0.0
PR: 85385
Submitted by: Ports Fury
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/zimg/Makefile | 4 | ||||
-rw-r--r-- | graphics/zimg/distinfo | 4 | ||||
-rw-r--r-- | graphics/zimg/files/patch-zimg.c | 22 |
3 files changed, 27 insertions, 3 deletions
diff --git a/graphics/zimg/Makefile b/graphics/zimg/Makefile index fabe72399ba9..ebab6cd667eb 100644 --- a/graphics/zimg/Makefile +++ b/graphics/zimg/Makefile @@ -6,7 +6,7 @@ # PORTNAME= zimg -PORTVERSION= 4.22.0 +PORTVERSION= 5.0.0 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -28,4 +28,6 @@ CONFIGURE_ARGS= --with-dynaload-cc="${CC}" \ MAN1= zimg.1 PLIST_FILES= include/zimg.h bin/zimg +CFLAGS+= -DHAVE_GD_FREETYPE + .include <bsd.port.mk> diff --git a/graphics/zimg/distinfo b/graphics/zimg/distinfo index ca98666d31aa..0d81baac3394 100644 --- a/graphics/zimg/distinfo +++ b/graphics/zimg/distinfo @@ -1,2 +1,2 @@ -MD5 (zimg-4.22.0.tar.gz) = 61af1f7fdb32e099f8a0346afa35430e -SIZE (zimg-4.22.0.tar.gz) = 378824 +MD5 (zimg-5.0.0.tar.gz) = 8522d35be806f6f10fea5a9bee11410c +SIZE (zimg-5.0.0.tar.gz) = 384858 diff --git a/graphics/zimg/files/patch-zimg.c b/graphics/zimg/files/patch-zimg.c new file mode 100644 index 000000000000..354fc730d16b --- /dev/null +++ b/graphics/zimg/files/patch-zimg.c @@ -0,0 +1,22 @@ +--- zimg.c.orig Sat Aug 27 21:46:20 2005 ++++ zimg.c Sat Aug 27 23:04:13 2005 +@@ -2147,6 +2147,8 @@ + + for (current = z.label; current; current = current->next) { + ++ int width, height; ++ + int x = current->x; + int y = current->y; + +@@ -2160,8 +2162,8 @@ + continue; + } + +- int width = brect[2] - brect[6]; +- int height = brect[3] - brect[7]; ++ width = brect[2] - brect[6]; ++ height = brect[3] - brect[7]; + + /* if label.x or label.y are positive, do NOT make any + * check, if the text will be entirely on the image */ |