View | Details | Raw Unified | Return to bug 203806 | Differences between
and this patch

Collapse All | Expand All

(-)graphics/argyllcms/Makefile (-3 / +5 lines)
Lines 13-20 Link Here
13
13
14
LICENSE=	AGPLv3
14
LICENSE=	AGPLv3
15
15
16
BROKEN_powerpc64=	Does not build
17
18
BUILD_DEPENDS=	jam:devel/jam
16
BUILD_DEPENDS=	jam:devel/jam
19
LIB_DEPENDS=	libtiff.so:graphics/tiff
17
LIB_DEPENDS=	libtiff.so:graphics/tiff
20
18
Lines 31-37 Link Here
31
29
32
do-install:
30
do-install:
33
	@cd ${WRKSRC} && ${SETENV} DESTDIR=${STAGEDIR} PREFIX=${PREFIX} \
31
	@cd ${WRKSRC} && ${SETENV} DESTDIR=${STAGEDIR} PREFIX=${PREFIX} \
34
		REFSUBDIR=share/argyll/ref \
32
		REFSUBDIR=share/argyll/ref CC=${CC} \
35
		jam -q -fJambase -j${MAKE_JOBS_NUMBER} install
33
		jam -q -fJambase -j${MAKE_JOBS_NUMBER} install
36
	@${MV} ${STAGEDIR}${PREFIX}/bin/License.txt \
34
	@${MV} ${STAGEDIR}${PREFIX}/bin/License.txt \
37
		${STAGEDIR}${PREFIX}/share/argyll/
35
		${STAGEDIR}${PREFIX}/share/argyll/
Lines 38-40 Link Here
38
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
36
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
39
37
40
.include <bsd.port.mk>
38
.include <bsd.port.mk>
39
40
.if !empty(AR)
41
AR+= rusc
42
.endif
(-)graphics/argyllcms/files/patch-Jambase (+11 lines)
Line 0 Link Here
1
--- Jambase.old	2016-01-17 17:34:11.510716000 -0600
2
+++ Jambase	2016-01-19 09:25:17.501487000 -0600
3
@@ -941,7 +941,7 @@
4
 
5
 	# UNIX defaults
6
 
7
-	CCFLAGS			?= -DUNIX -D_THREAD_SAFE -pipe ;
8
+	CCFLAGS			?= -DUNIX -D_THREAD_SAFE -pipe -std=gnu11 ;
9
 	CCOPTFLAG		?= -O2 ;		
10
 	CCDEBUGFLAG		?= -g ;		
11
 	CCPROFFLAG		?= ;		

Return to bug 203806