svn commit: r481466 - branches/2018Q4/multimedia/libfame
Thomas Zander
riggs at FreeBSD.org
Sun Oct 7 17:34:00 UTC 2018
Author: riggs
Date: Sun Oct 7 17:33:59 2018
New Revision: 481466
URL: https://svnweb.freebsd.org/changeset/ports/481466
Log:
MFH: r481465
Fix build on i386 with lld as the system linker
PR: 231431
Submitted by: emaste, patch by ndowens at yahoo.com
Reviewed by: emaste
Approved by: ports-secteam (riggs)
Modified:
branches/2018Q4/multimedia/libfame/Makefile
Directory Properties:
branches/2018Q4/ (props changed)
Modified: branches/2018Q4/multimedia/libfame/Makefile
==============================================================================
--- branches/2018Q4/multimedia/libfame/Makefile Sun Oct 7 17:31:14 2018 (r481465)
+++ branches/2018Q4/multimedia/libfame/Makefile Sun Oct 7 17:33:59 2018 (r481466)
@@ -3,27 +3,30 @@
PORTNAME= libfame
PORTVERSION= 0.9.1
-PORTREVISION= 5
+PORTREVISION= 6
CATEGORIES= multimedia
MASTER_SITES= SF/fame/${PORTNAME}/${PORTVERSION}
MAINTAINER= multimedia at FreeBSD.org
COMMENT= Video encoding library
-GNU_CONFIGURE= yes
-INSTALL_TARGET= install-strip
+LICENSE= LGPL20
+LICENSE_FILE= ${WRKSRC}/COPYING
+
USES= libtool
USE_LDCONFIG= yes
+GNU_CONFIGURE= yes
+INSTALL_TARGET= install-strip
+
OPTIONS_DEFINE= MMX
OPTIONS_DEFAULT=MMX
MMX_CONFIGURE_ENABLE= mmx
.include <bsd.port.options.mk>
-
-.if ${ARCH}=="i386"
-LLD_UNSAFE= yes # cf. PR 226980
+.if ${ARCH} == "i386"
+MAKE_ARGS= CFLAGS="${CLFAGS}" CC="${CC}"
.endif
post-patch:
More information about the svn-ports-all
mailing list