diff options
author | kris <kris@FreeBSD.org> | 2004-11-19 06:41:01 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-11-19 06:41:01 +0800 |
commit | 4e3ca6445ad1ebeccf80cf069c93554d12543f90 (patch) | |
tree | 270b0cfb550890bf8c70bbc8d609d6bf67acdbc4 /textproc/py-ltxml | |
parent | 0a29f0ee422e935f2623eca125884d3ece1d41fb (diff) | |
download | freebsd-ports-gnome-4e3ca6445ad1ebeccf80cf069c93554d12543f90.tar.gz freebsd-ports-gnome-4e3ca6445ad1ebeccf80cf069c93554d12543f90.tar.zst freebsd-ports-gnome-4e3ca6445ad1ebeccf80cf069c93554d12543f90.zip |
BROKEN on amd64 and ia64: Does not build (links non-shared with shared library)
Diffstat (limited to 'textproc/py-ltxml')
-rw-r--r-- | textproc/py-ltxml/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/textproc/py-ltxml/Makefile b/textproc/py-ltxml/Makefile index 9ae2326f7c1a..e10529d18b2a 100644 --- a/textproc/py-ltxml/Makefile +++ b/textproc/py-ltxml/Makefile @@ -26,6 +26,12 @@ DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} USE_REINPLACE= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +BROKEN= "Does not build on ia64 or amd64 (tries to link non-shared with shared libraries)" +.endif + post-patch: @${REINPLACE_CMD} -e 's|/projects/ltg/projects/lcontrib|${LOCALBASE}|' ${WRKSRC}/setup.py @@ -36,4 +42,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/example/* ${EXAMPLESDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |