diff options
author | adam <adam@pkgsrc.org> | 2013-09-14 09:13:26 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2013-09-14 09:13:26 +0000 |
commit | 4993b67bd00616e7333b02aaaa54d02189c3f8f3 (patch) | |
tree | f5a9bb2b66c493a688dd404d5e153d5f6f1ee2e5 /graphics | |
parent | 77d04b6928ff52597c51faad4acd3a33e393c932 (diff) | |
download | pkgsrc-4993b67bd00616e7333b02aaaa54d02189c3f8f3.tar.gz |
Changes 1.71:
* Avoid rounding errors in '--resize'.
* Report error when '-I' is combined with '-b'.
* Frame selections also apply in batch mode.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gifsicle/Makefile | 14 | ||||
-rw-r--r-- | graphics/gifsicle/PLIST | 6 | ||||
-rw-r--r-- | graphics/gifsicle/distinfo | 8 | ||||
-rw-r--r-- | graphics/gifsicle/options.mk | 19 |
4 files changed, 31 insertions, 16 deletions
diff --git a/graphics/gifsicle/Makefile b/graphics/gifsicle/Makefile index 4f92cb15d96..ca5f9311ec9 100644 --- a/graphics/gifsicle/Makefile +++ b/graphics/gifsicle/Makefile @@ -1,20 +1,16 @@ -# $NetBSD: Makefile,v 1.15 2012/10/06 14:10:52 asau Exp $ -# +# $NetBSD: Makefile,v 1.16 2013/09/14 09:13:26 adam Exp $ -DISTNAME= gifsicle-1.41 -PKGREVISION= 1 +DISTNAME= gifsicle-1.71 CATEGORIES= graphics MASTER_SITES= http://www.lcdf.org/~eddietwo/gifsicle/ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.lcdf.org/~eddietwo/gifsicle/ COMMENT= Create, edit, and inspect GIFs from shell +LICENSE= gnu-gpl-v2 -GNU_CONFIGURE= YES +GNU_CONFIGURE= yes -BUILDLINK_DEPMETHOD.libXt?= build +.include "options.mk" -.include "../../x11/libSM/buildlink3.mk" -.include "../../x11/libX11/buildlink3.mk" -.include "../../x11/libXt/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/graphics/gifsicle/PLIST b/graphics/gifsicle/PLIST index c61ed2d6b64..c888c65bddd 100644 --- a/graphics/gifsicle/PLIST +++ b/graphics/gifsicle/PLIST @@ -1,7 +1,7 @@ -@comment $NetBSD: PLIST,v 1.2 2004/11/25 19:39:53 snj Exp $ +@comment $NetBSD: PLIST,v 1.3 2013/09/14 09:13:26 adam Exp $ bin/gifdiff bin/gifsicle -bin/gifview +${PLIST.x11}bin/gifview man/man1/gifdiff.1 man/man1/gifsicle.1 -man/man1/gifview.1 +${PLIST.x11}man/man1/gifview.1 diff --git a/graphics/gifsicle/distinfo b/graphics/gifsicle/distinfo index 6a7f0fffc9d..462a913d4e8 100644 --- a/graphics/gifsicle/distinfo +++ b/graphics/gifsicle/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.5 2005/02/24 08:45:05 agc Exp $ +$NetBSD: distinfo,v 1.6 2013/09/14 09:13:26 adam Exp $ -SHA1 (gifsicle-1.41.tar.gz) = 1ced2d18a070512bbbab8cb229a2a3d54c8b6cf4 -RMD160 (gifsicle-1.41.tar.gz) = 8a1732ad5ac07de15f8e393275c5f2f07aa6f625 -Size (gifsicle-1.41.tar.gz) = 215267 bytes +SHA1 (gifsicle-1.71.tar.gz) = a7665faa99b157ea545b65761d19e15b9b4a8b74 +RMD160 (gifsicle-1.71.tar.gz) = 0e176a43594bd1c30ac217458c42c2795e8ea9fd +Size (gifsicle-1.71.tar.gz) = 263029 bytes diff --git a/graphics/gifsicle/options.mk b/graphics/gifsicle/options.mk new file mode 100644 index 00000000000..6ba34126a04 --- /dev/null +++ b/graphics/gifsicle/options.mk @@ -0,0 +1,19 @@ +# $NetBSD: options.mk,v 1.1 2013/09/14 09:13:26 adam Exp $ + +PKG_OPTIONS_VAR= PKG_OPTIONS.gifsicle +PKG_SUPPORTED_OPTIONS= x11 +PKG_SUGGESTED_OPTIONS= x11 + +.include "../../mk/bsd.options.mk" + +PLIST_VARS+= x11 + +.if !empty(PKG_OPTIONS:Mx11) +BUILDLINK_DEPMETHOD.libXt+= build +.include "../../x11/libSM/buildlink3.mk" +.include "../../x11/libX11/buildlink3.mk" +.include "../../x11/libXt/buildlink3.mk" +PLIST.x11= yes +.else +CONFIGURE_ARGS+= --disable-gifview +.endif |