svn commit: r498385 - head/emulators/kcemu

Mark Linimon linimon at FreeBSD.org
Mon Apr 8 16:46:07 UTC 2019


Author: linimon
Date: Mon Apr  8 16:46:06 2019
New Revision: 498385
URL: https://svnweb.freebsd.org/changeset/ports/498385

Log:
  Add compiler:c++11-lang to USES to fix build on GCC-based architectures:
  
    /usr/local/lib/libgraphite2.so.3: undefined reference to `__cxa_throw_bad_array_new_length at CXXABI_1.3.8'
  
  While here, pet portlint and alpha sort some USE* variables.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/emulators/kcemu/Makefile

Modified: head/emulators/kcemu/Makefile
==============================================================================
--- head/emulators/kcemu/Makefile	Mon Apr  8 16:42:21 2019	(r498384)
+++ head/emulators/kcemu/Makefile	Mon Apr  8 16:46:06 2019	(r498385)
@@ -22,11 +22,11 @@ LIB_DEPENDS=	libaudiofile.so:audio/libaudiofile \
 		libxvidcore.so:multimedia/xvid \
 		libz80ex.so:devel/z80ex
 
-GNU_CONFIGURE=	yes
-USE_XORG=	xmu
-USE_GNOME=	gtk20
-USES=		gettext ncurses pkgconfig
+USES=		compiler:c++11-lang gettext ncurses pkgconfig
 USE_CXXSTD=	gnu++98
+USE_GNOME=	gtk20
+USE_XORG=	xmu
+GNU_CONFIGURE=	yes
 
 LDFLAGS+=	-L${LOCALBASE}/lib
 WRKSRC=		${WRKDIR}/KCemu-${PORTVERSION}


More information about the svn-ports-head mailing list