Index: head/graphics/tumble/Makefile =================================================================== --- head/graphics/tumble/Makefile +++ head/graphics/tumble/Makefile @@ -2,11 +2,9 @@ # $FreeBSD$ PORTNAME= tumble -PORTVERSION= 0.33 -PORTREVISION= 6 +PORTVERSION= 0.36 +DISTVERSIONPREFIX= v CATEGORIES= graphics print -MASTER_SITES= http://tumble.brouhaha.com/download/ \ - http://www.sourcefiles.org/Graphics/Tools/Conversion/ MAINTAINER= ports@FreeBSD.org COMMENT= Creates a PDF file from image files @@ -14,15 +12,18 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +NOT_FOR_ARCHS= powerpc sparc64 +NOT_FOR_ARCHS_REASON= Only works on little endian systems + LIB_DEPENDS= libtiff.so:graphics/tiff \ libnetpbm.so:graphics/netpbm USES= bison gmake jpeg localbase:ldflags -CFLAGS+= -I${LOCALBASE}/include/netpbm +USE_GITHUB= yes +GH_ACCOUNT= brouhaha -NOT_FOR_ARCHS= powerpc sparc64 -NOT_FOR_ARCHS_REASON= Only works on little endian systems +CFLAGS+= -I${LOCALBASE}/include/netpbm PORTDOCS= README PLIST_FILES= bin/tumble Index: head/graphics/tumble/distinfo =================================================================== --- head/graphics/tumble/distinfo +++ head/graphics/tumble/distinfo @@ -1,2 +1,3 @@ -SHA256 (tumble-0.33.tar.gz) = d579d572b4335d8c4008695fee9f32051194499987c340b14f17b294ece7643e -SIZE (tumble-0.33.tar.gz) = 42983 +TIMESTAMP = 1532266375 +SHA256 (brouhaha-tumble-v0.36_GH0.tar.gz) = 7b9e0788416b8129203831da7eef5310b671325503e79aa22fd91e822b54b978 +SIZE (brouhaha-tumble-v0.36_GH0.tar.gz) = 51945 Index: head/graphics/tumble/files/patch-parser.y =================================================================== --- head/graphics/tumble/files/patch-parser.y +++ head/graphics/tumble/files/patch-parser.y @@ -1,20 +0,0 @@ ---- parser.y.orig 2003-12-09 16:45:41 UTC -+++ parser.y -@@ -110,7 +110,7 @@ image_ranges: - - - input_file_clause: -- FILE_KEYWORD STRING ';' { input_set_file ($2) } ; -+ FILE_KEYWORD STRING ';' { input_set_file ($2); } ; - - image_clause: - IMAGE INTEGER ';' { range_t range = { $2, $2 }; input_images (range); } ; -@@ -119,7 +119,7 @@ images_clause: - IMAGES image_ranges ';' ; - - rotate_clause: -- ROTATE INTEGER ';' { input_set_rotation ($2) } ; -+ ROTATE INTEGER ';' { input_set_rotation ($2); } ; - - unit: - /* empty */ /* default to INCH */ { $$ = 1.0; }