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

(-)Makefile (-10 / +2 lines)
Lines 7-14 Link Here
7
#
7
#
8
8
9
PORTNAME=	clearsilver
9
PORTNAME=	clearsilver
10
PORTVERSION=	0.9.13
10
PORTVERSION=	0.9.14
11
PORTREVISION=	1
11
#PORTREVISION=	0
12
CATEGORIES=	www
12
CATEGORIES=	www
13
MASTER_SITES=	http://www.clearsilver.net/downloads/
13
MASTER_SITES=	http://www.clearsilver.net/downloads/
14
14
Lines 63-76 Link Here
63
	skipRelease.3 skipSearch.3 wdb_keys.3
63
	skipRelease.3 skipSearch.3 wdb_keys.3
64
64
65
.include <bsd.port.pre.mk>
65
.include <bsd.port.pre.mk>
66
67
.if ${ARCH} != "i386"
68
BROKEN=		"Does not compile on !i386"
69
.endif
70
71
.if ${ARCH} == "amd64"
72
BROKEN=		"Does not compile on amd64 (missing -fPIC from shared libraries)"
73
.endif
74
66
75
post-patch:
67
post-patch:
76
	@# Remove CFLAGS when building the python module, pydistfile is used
68
	@# Remove CFLAGS when building the python module, pydistfile is used
(-)files/patch-rules.mk.in (+11 lines)
Added Link Here
1
--- #rules.mk.in~	Thu Jun 30 11:05:01 2005
2
+++ rules.mk.in	Thu Jun 30 11:05:01 2005
3
@@ -73,7 +73,7 @@
4
 PERL	   = @PERL@
5
 RUBY       = @RUBY@
6
 
7
-CFLAGS     = @CFLAGS@ -Wall -I$(NEOTONIC_ROOT) @CPPFLAGS@
8
+CFLAGS     = @CFLAGS@ -fPIC -Wall -I$(NEOTONIC_ROOT) @CPPFLAGS@
9
 CPPFLAGS   = -I$(NEOTONIC_ROOT) @CPPFLAGS@
10
 OUTPUT_OPTION = -o $@
11
 LD         = $(CC) -o

Return to bug 82825