diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2004-01-05 20:42:55 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2004-01-05 20:42:55 +0000 |
commit | 74658d0acc25bc7c9e93fb804c1324330ea66690 (patch) | |
tree | 59e0b75c01f44891137bf7ce00464b281729061c /multimedia | |
parent | Add bsdbktr_tvtune, an command line TV channel tuner for Brooktree based (diff) |
Add -fPIC to fix build on amd64 (when libxine is fixed)
Mark Broken, because it crashes on startup.
Notes
Notes:
svn path=/head/; revision=97404
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/kaffeine/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/multimedia/kaffeine/Makefile b/multimedia/kaffeine/Makefile index e7638e4dc031..2eb26c148bbb 100644 --- a/multimedia/kaffeine/Makefile +++ b/multimedia/kaffeine/Makefile @@ -18,7 +18,14 @@ LIB_DEPENDS= xine.8:${PORTSDIR}/multimedia/libxine USE_KDELIBS_VER= 3 USE_GMAKE= yes GNU_CONFIGURE= yes +CONFIGURE_ENV= CXXFLAGS="${CFLAGS} -fPIC" CONFIGURE_TARGET= CONFIGURE_ARGS+= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${MACHINE_ARCH} == "amd64" +BROKEN= "crashes on start" +.endif + +.include <bsd.port.post.mk> |