svn commit: r383750 - in head: games/megaglest graphics/delaboratory graphics/gtimelapse graphics/wxsvg math/gambit

John Marino marino at FreeBSD.org
Fri Apr 10 19:04:22 UTC 2015


Author: marino
Date: Fri Apr 10 19:04:19 2015
New Revision: 383750
URL: https://svnweb.freebsd.org/changeset/ports/383750

Log:
  Unbreak five wxgtk30-based ports by adding -std=c++11 to cxxflags
  
  The breakage was a result of moving wxgtk30 to c++11 from c++01

Modified:
  head/games/megaglest/Makefile
  head/graphics/delaboratory/Makefile
  head/graphics/gtimelapse/Makefile
  head/graphics/wxsvg/Makefile
  head/math/gambit/Makefile

Modified: head/games/megaglest/Makefile
==============================================================================
--- head/games/megaglest/Makefile	Fri Apr 10 18:53:28 2015	(r383749)
+++ head/games/megaglest/Makefile	Fri Apr 10 19:04:19 2015	(r383750)
@@ -27,6 +27,7 @@ USES=		cmake compiler:c++11-lib display:
 USE_GL=		glew gl glu
 USE_SDL=	yes
 USE_WX=		3.0
+USE_CXXSTD=	c++11
 WX_UNICODE=	yes
 
 CFLAGS+=	-I${LOCALBASE}/include

Modified: head/graphics/delaboratory/Makefile
==============================================================================
--- head/graphics/delaboratory/Makefile	Fri Apr 10 18:53:28 2015	(r383749)
+++ head/graphics/delaboratory/Makefile	Fri Apr 10 19:04:19 2015	(r383750)
@@ -15,6 +15,7 @@ LICENSE=	GPLv3
 USES=		gmake
 MAKE_ARGS=	CXX="${CXX}" WXCONFIG="${WX_CONFIG}"
 USE_WX=		3.0
+USE_CXXSTD=	c++11
 WX_UNICODE=	yes
 
 PLIST_FILES=	bin/${PORTNAME}

Modified: head/graphics/gtimelapse/Makefile
==============================================================================
--- head/graphics/gtimelapse/Makefile	Fri Apr 10 18:53:28 2015	(r383749)
+++ head/graphics/gtimelapse/Makefile	Fri Apr 10 19:04:19 2015	(r383750)
@@ -18,6 +18,7 @@ WRKSRC=		${WRKDIR}/${PORTNAME}
 
 USES=		pkgconfig
 USE_WX=		3.0
+USE_CXXSTD=	c++11
 WX_UNICODE=	yes
 WX_CONF_ARGS=	absolute
 USE_AUTOTOOLS=	libtoolize aclocal automake autoconf

Modified: head/graphics/wxsvg/Makefile
==============================================================================
--- head/graphics/wxsvg/Makefile	Fri Apr 10 18:53:28 2015	(r383749)
+++ head/graphics/wxsvg/Makefile	Fri Apr 10 19:04:19 2015	(r383750)
@@ -20,7 +20,8 @@ WX_UNICODE=	yes
 WX_CONF_ARGS=	absolute
 USE_GNOME=	cairo
 GNU_CONFIGURE=	yes
-CONFIGURE_ENV=	LIBAV_CFLAGS="${LIBAV_CFLAGS}" LIBAV_LIBS="${LIBAV_LIBS}"
+CONFIGURE_ENV=	LIBAV_CFLAGS="${LIBAV_CFLAGS}" LIBAV_LIBS="${LIBAV_LIBS}" \
+		CXXFLAGS="${CXXFLAGS} -std=c++11"
 MAKE_ENV=	AM_CPPFLAGS="${LIBAV_CFLAGS}"
 USE_LDCONFIG=	yes
 INSTALL_TARGET=	install-strip

Modified: head/math/gambit/Makefile
==============================================================================
--- head/math/gambit/Makefile	Fri Apr 10 18:53:28 2015	(r383749)
+++ head/math/gambit/Makefile	Fri Apr 10 19:04:19 2015	(r383750)
@@ -14,6 +14,7 @@ LICENSE=	GPLv2
 USES=		compiler:c++11-lib
 USE_GNOME=	gtk20
 USE_WX=		3.0
+USE_CXXSTD=	c+=11
 WX_CONF_ARGS=	absolute
 WX_UNICODE=	yes
 GNU_CONFIGURE=	yes


More information about the svn-ports-head mailing list