summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authorWilliam Grzybowski <wg@FreeBSD.org>2013-09-05 14:10:41 +0000
committerWilliam Grzybowski <wg@FreeBSD.org>2013-09-05 14:10:41 +0000
commiteccaa71696e3f206c607dc794a3e88694f16182c (patch)
treed89878251072400c30b6104cbc316c046a2c04af /print
parentPlugins need pkgconf to build too, they are using the same (diff)
print/transfig: update to 3.2.5e
- Update to 3.2.5e [1] - Convert lib depends to new syntax - Pass maintainership to submitter Changes: http://www.xfig.org/art17.html PR: ports/181750 Submitted by: Kurt Jaeger <fbsd-ports opsec.eu>
Notes
Notes: svn path=/head/; revision=326401
Diffstat (limited to 'print')
-rw-r--r--print/transfig/Makefile9
-rw-r--r--print/transfig/distinfo4
-rw-r--r--print/transfig/files/patch-fig2dev_dev_readpng.c19
3 files changed, 6 insertions, 26 deletions
diff --git a/print/transfig/Makefile b/print/transfig/Makefile
index 258e626228bf..33a7213f6bce 100644
--- a/print/transfig/Makefile
+++ b/print/transfig/Makefile
@@ -2,17 +2,16 @@
# $FreeBSD$
PORTNAME= transfig
-PORTVERSION= 3.2.5d
-PORTREVISION= 1
+PORTVERSION= 3.2.5e
CATEGORIES= print
MASTER_SITES= SF/mcj/mcj-source/
DISTNAME= ${PORTNAME}.${PORTVERSION}
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Tools to convert Xfig's .fig files
+MAINTAINER= fbsd-ports@opsec.eu
+COMMENT= Tools to convert Xfig .fig files
RUN_DEPENDS= ppmtogif:${PORTSDIR}/graphics/netpbm
-LIB_DEPENDS= png15:${PORTSDIR}/graphics/png
+LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png
USES= imake
diff --git a/print/transfig/distinfo b/print/transfig/distinfo
index 74efc2fd9964..6f9774813cc8 100644
--- a/print/transfig/distinfo
+++ b/print/transfig/distinfo
@@ -1,2 +1,2 @@
-SHA256 (transfig.3.2.5d.tar.gz) = ae81214177fb05f91f6e43b0b42633b6e0024570cbc6591a3858e12100ce8aaa
-SIZE (transfig.3.2.5d.tar.gz) = 497451
+SHA256 (transfig.3.2.5e.tar.gz) = 8ec5a8f13254dd155622ed3ee0fda1382b1e2b5882d83b9aca1871f12a3e7744
+SIZE (transfig.3.2.5e.tar.gz) = 531256
diff --git a/print/transfig/files/patch-fig2dev_dev_readpng.c b/print/transfig/files/patch-fig2dev_dev_readpng.c
deleted file mode 100644
index 79d259209a20..000000000000
--- a/print/transfig/files/patch-fig2dev_dev_readpng.c
+++ /dev/null
@@ -1,19 +0,0 @@
---- fig2dev/dev/readpng.c.orig 2010-04-21 18:02:14.000000000 +0200
-+++ fig2dev/dev/readpng.c 2012-05-05 13:20:54.000000000 +0200
-@@ -16,6 +16,7 @@
- #include "fig2dev.h"
- #include "object.h"
- #include <png.h>
-+#include <pngpriv.h>
-
- /* return codes: 1 : success
- 0 : invalid file
-@@ -62,7 +63,7 @@
- }
-
- /* set long jump here */
-- if (setjmp(png_ptr->jmpbuf)) {
-+ if (setjmp(png_jmpbuf(png_ptr))) {
- /* if we get here there was a problem reading the file */
- png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
- return 0;