diff options
author | kris <kris@FreeBSD.org> | 2004-03-06 12:20:56 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-06 12:20:56 +0000 |
commit | ae5f533f482e37d9c4274780017652aa2b0f3158 (patch) | |
tree | 390196bc05558800779aac5b86ca626847e91c37 /graphics/lfview | |
parent | a42b482df9cda352e6edbbc227d51caa7227e63f (diff) | |
download | FreeBSD-ports-ae5f533f482e37d9c4274780017652aa2b0f3158.zip FreeBSD-ports-ae5f533f482e37d9c4274780017652aa2b0f3158.tar.gz |
BROKEN on amd64: Does not compile (-fPIC missing)
Diffstat (limited to 'graphics/lfview')
-rw-r--r-- | graphics/lfview/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/lfview/Makefile b/graphics/lfview/Makefile index ca40297..24f2401 100644 --- a/graphics/lfview/Makefile +++ b/graphics/lfview/Makefile @@ -18,6 +18,12 @@ USE_IMAKE= yes INSTALLS_SHLIB= yes NO_INSTALL_MANPAGES= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not compile on amd64 (-fPIC missing)" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/lfview ${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/plugins/liblfv_leaf.so.1 ${PREFIX}/lib @@ -27,4 +33,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/ja/lfview .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |