diff options
author | antoine <antoine@FreeBSD.org> | 2014-11-01 05:43:47 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-11-01 05:43:47 +0800 |
commit | 9b2dc394f881c616851bb0b66f6c3cf21db3e7ce (patch) | |
tree | 52cc3e18ad0b1bbc6cb5a8389727d4486a085c85 | |
parent | 02c698d2eb8c1f28aa373c26e1213b68007d4cbf (diff) | |
download | freebsd-ports-gnome-9b2dc394f881c616851bb0b66f6c3cf21db3e7ce.tar.gz freebsd-ports-gnome-9b2dc394f881c616851bb0b66f6c3cf21db3e7ce.tar.zst freebsd-ports-gnome-9b2dc394f881c616851bb0b66f6c3cf21db3e7ce.zip |
Fix LIB_DEPENDS
-rw-r--r-- | multimedia/recmpeg/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/multimedia/recmpeg/Makefile b/multimedia/recmpeg/Makefile index a6a9d79e4592..66261ad67bde 100644 --- a/multimedia/recmpeg/Makefile +++ b/multimedia/recmpeg/Makefile @@ -10,21 +10,16 @@ MASTER_SITES= SF/fame/${PORTNAME}/${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Simple video encoder -LIB_DEPENDS= libfame-0.9.so:${PORTSDIR}/multimedia/libfame +LIB_DEPENDS= libfame.so:${PORTSDIR}/multimedia/libfame GNU_CONFIGURE= yes -MAN1= recmpeg.1 PLIST_FILES= bin/recmpeg \ man/man1/recmpeg.1.gz CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -.include <bsd.port.pre.mk> +BROKEN_ia64= Fails to link on ia64 -.if ${ARCH} == "ia64" -BROKEN= Fails to link on ia64 -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> |