svn commit: r481465 - head/multimedia/libfame

Thomas Zander riggs at FreeBSD.org
Sun Oct 7 17:31:15 UTC 2018


Author: riggs
Date: Sun Oct  7 17:31:14 2018
New Revision: 481465
URL: https://svnweb.freebsd.org/changeset/ports/481465

Log:
  Fix build on i386 with lld as the system linker
  
  PR:		231431
  Submitted by:	emaste, patch by ndowens at yahoo.com
  Reviewed by:	emaste
  MFH:		2018Q4

Modified:
  head/multimedia/libfame/Makefile

Modified: head/multimedia/libfame/Makefile
==============================================================================
--- head/multimedia/libfame/Makefile	Sun Oct  7 17:30:09 2018	(r481464)
+++ head/multimedia/libfame/Makefile	Sun Oct  7 17:31:14 2018	(r481465)
@@ -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