View | Details | Raw Unified | Return to bug 257913
Collapse All | Expand All

(-)b/graphics/tumble/Makefile (-5 / +4 lines)
Lines 1-19 Link Here
1
# Created by: Rob Farmer <rfarmer@predatorlabs.net>
1
# Created by: Rob Farmer <rfarmer@predatorlabs.net>
2
2
3
PORTNAME=	tumble
3
PORTNAME=	tumble
4
PORTVERSION=	0.36
5
DISTVERSIONPREFIX=	v
4
DISTVERSIONPREFIX=	v
5
DISTVERSION=	0.36
6
PORTREVISION=	1
6
CATEGORIES=	graphics print
7
CATEGORIES=	graphics print
7
8
8
MAINTAINER=	ports@FreeBSD.org
9
MAINTAINER=	fuz@fuz.su
9
COMMENT=	Creates a PDF file from image files
10
COMMENT=	Creates a PDF file from image files
10
11
11
LICENSE=	GPLv2
12
LICENSE=	GPLv2
12
LICENSE_FILE=	${WRKSRC}/COPYING
13
LICENSE_FILE=	${WRKSRC}/COPYING
13
14
14
BROKEN_FreeBSD_13=	ld: error: duplicate symbol: blank_handler
15
NOT_FOR_ARCHS=		mips mips64 powerpc powerpc64 powerpcspe sparc64
15
BROKEN_FreeBSD_14=	ld: error: duplicate symbol: blank_handler
16
NOT_FOR_ARCHS=		powerpc sparc64
17
NOT_FOR_ARCHS_REASON=	Only works on little endian systems
16
NOT_FOR_ARCHS_REASON=	Only works on little endian systems
18
17
19
LIB_DEPENDS=	libtiff.so:graphics/tiff \
18
LIB_DEPENDS=	libtiff.so:graphics/tiff \
(-)b/graphics/tumble/files/patch-semantics.c (+11 lines)
Added Link Here
1
--- semantics.c.orig	2021-08-17 12:37:41 UTC
2
+++ semantics.c
3
@@ -119,7 +119,7 @@ typedef struct output_page_t
4
 #endif
5
 
6
 
7
-FILE *yyin;
8
+extern FILE *yyin;
9
 int line;  /* line number in spec file */
10
 
11
 int bookmark_level;
(-)b/graphics/tumble/files/patch-tumble__input.h (-1 / +8 lines)
Added Link Here
0
- 
1
--- tumble_input.h.orig	2021-08-17 12:36:31 UTC
2
+++ tumble_input.h
3
@@ -71,4 +71,4 @@ void init_jpeg_handler (void);
4
 void init_pbm_handler  (void);
5
 void init_png_handler  (void);
6
 
7
-input_handler_t blank_handler;
8
+extern input_handler_t blank_handler;

Return to bug 257913