aboutsummaryrefslogtreecommitdiff
path: root/textproc/ltxml
diff options
context:
space:
mode:
authorTijl Coosemans <tijl@FreeBSD.org>2017-02-15 14:48:54 +0000
committerTijl Coosemans <tijl@FreeBSD.org>2017-02-15 14:48:54 +0000
commit033e341157270b4a775498b03d210bc77f70e744 (patch)
tree702431e67844bb2ec4a36e2bab12cb0a679cfc2c /textproc/ltxml
parentfe7182def87aefd4058c9dce9dd401b2ca3d9c12 (diff)
downloadports-033e341157270b4a775498b03d210bc77f70e744.tar.gz
ports-033e341157270b4a775498b03d210bc77f70e744.zip
Add -fPIC for all architectures because textproc/py-ltxml links
libltapi12.a and libltstd12.a into a shared library.
Notes
Notes: svn path=/head/; revision=434166
Diffstat (limited to 'textproc/ltxml')
-rw-r--r--textproc/ltxml/Makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/textproc/ltxml/Makefile b/textproc/ltxml/Makefile
index fd088472f12d..bbf82cdd02c0 100644
--- a/textproc/ltxml/Makefile
+++ b/textproc/ltxml/Makefile
@@ -3,6 +3,7 @@
PORTNAME= ltxml
PORTVERSION= 1.2.9
+PORTREVISION= 1
CATEGORIES= textproc
MASTER_SITES= GENTOO \
ftp://ftp.cogsci.ed.ac.uk/pub/LTXML/
@@ -19,22 +20,20 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/XML
USES= gmake perl5
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-zlib=/usr --datadir=${STAGEDIR}${PREFIX}/lib/ltxml12
+# textproc/py-ltxml links libltapi12.a and libltstd12.a into a shared library.
+CFLAGS+= -fPIC
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
CFLAGS+= -Wuninitialized -ffast-math -finline-functions \
-fomit-frame-pointer -fexpensive-optimizations -O3
.endif
-.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
-CFLAGS+= -fPIC
-.endif
-
post-patch:
@${REINPLACE_CMD} -e 's|CFLAGS=.*$$|CFLAGS=\$$CFLAGS|g ; \
s|CXXFLAGS=.*$$|CXXFLAGS=\$$CXXFLAGS|g' ${WRKSRC}/configure
@${REINPLACE_CMD} -e 's|@prefix@|${STAGEDIR}${PREFIX}|' \
${WRKSRC}/src/Makefile.sub.in
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>