Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Feb 2019 22:50:24 +0000 (UTC)
From:      "Tobias C. Berner" <tcberner@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r492466 - in head: audio/juk databases/kexi games/knights games/ksudoku graphics/kphotoalbum graphics/showimage multimedia/kaffeine multimedia/phonon-gstreamer x11-fm/krusader2 x11/yakuake
Message-ID:  <201902082250.x18MoOOB082859@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tcberner
Date: Fri Feb  8 22:50:23 2019
New Revision: 492466
URL: https://svnweb.freebsd.org/changeset/ports/492466

Log:
  Fix with build on GCC architectures.
  
  PR:		235093
  Submitted by:	Piotr Kubaj <pkubaj@anongoth.pl>

Modified:
  head/audio/juk/Makefile
  head/databases/kexi/Makefile
  head/games/knights/Makefile
  head/games/ksudoku/Makefile
  head/graphics/kphotoalbum/Makefile
  head/graphics/showimage/Makefile
  head/multimedia/kaffeine/Makefile
  head/multimedia/phonon-gstreamer/Makefile
  head/x11-fm/krusader2/Makefile
  head/x11/yakuake/Makefile

Modified: head/audio/juk/Makefile
==============================================================================
--- head/audio/juk/Makefile	Fri Feb  8 22:46:11 2019	(r492465)
+++ head/audio/juk/Makefile	Fri Feb  8 22:50:23 2019	(r492466)
@@ -11,7 +11,7 @@ LICENSE=	GPLv2
 
 LIB_DEPENDS=	libtag.so:audio/taglib
 
-USES=		cmake kde:5 qt:5 tar:xz
+USES=		cmake compiler:c++11-lang kde:5 qt:5 tar:xz
 USE_KDE=	auth bookmarks codecs completion config configwidgets \
 		coreaddons crash globalaccel i18n iconthemes itemviews \
 		jobwidgets kio notifications service solid sonnet textwidgets \

Modified: head/databases/kexi/Makefile
==============================================================================
--- head/databases/kexi/Makefile	Fri Feb  8 22:46:11 2019	(r492465)
+++ head/databases/kexi/Makefile	Fri Feb  8 22:50:23 2019	(r492466)
@@ -14,8 +14,8 @@ LIB_DEPENDS=		libKDb3.so:databases/kdb \
 			libKPropertyCore3.so:x11-toolkits/kproperty \
 			libKReport3.so:textproc/kreport
 
-USES=			cmake desktop-file-utils gettext iconv \
-			kde:5 pkgconfig qt:5 tar:xz
+USES=			cmake compiler:c++11-lang desktop-file-utils gettext \
+			iconv kde:5 pkgconfig qt:5 tar:xz
 USE_GNOME=		glib20
 USE_KDE=		auth bookmarks codecs completion config \
 			configwidgets coreaddons crash ecm guiaddons i18n \

Modified: head/games/knights/Makefile
==============================================================================
--- head/games/knights/Makefile	Fri Feb  8 22:46:11 2019	(r492465)
+++ head/games/knights/Makefile	Fri Feb  8 22:50:23 2019	(r492466)
@@ -12,7 +12,7 @@ RUN_DEPENDS=	${LOCALBASE}/bin/gnuchess:games/gnuchess
 
 LICENSE=	GPLv2
 
-USES=		cmake kde:5 qt:5 tar:xz
+USES=		cmake compiler:c++11-lang kde:5 qt:5 tar:xz
 USE_KDE=	auth codecs completion config configwidgets coreaddons \
 		crash dbusaddons i18n libkdegames package plasma-framework \
 		plotting service solid sonnet textwidgets wallet \

Modified: head/games/ksudoku/Makefile
==============================================================================
--- head/games/ksudoku/Makefile	Fri Feb  8 22:46:11 2019	(r492465)
+++ head/games/ksudoku/Makefile	Fri Feb  8 22:50:23 2019	(r492466)
@@ -7,7 +7,7 @@ CATEGORIES=	games kde kde-applications
 MAINTAINER=	kde@FreeBSD.org
 COMMENT=	${${PORTNAME}_DESC}
 
-USES=		cmake kde:5 qt:5 tar:xz
+USES=		cmake compiler:c++11-lang kde:5 qt:5 tar:xz
 USE_GL=		gl glu
 USE_KDE=	archive auth codecs completion config configwidgets \
 		coreaddons crash ecm guiaddons i18n jobwidgets kio \

Modified: head/graphics/kphotoalbum/Makefile
==============================================================================
--- head/graphics/kphotoalbum/Makefile	Fri Feb  8 22:46:11 2019	(r492465)
+++ head/graphics/kphotoalbum/Makefile	Fri Feb  8 22:50:23 2019	(r492466)
@@ -15,7 +15,8 @@ LIB_DEPENDS=	libexiv2.so:graphics/exiv2 \
 		libKF5KGeoMap.so:astro/libkgeomap \
 		libKF5Kipi.so:graphics/libkipi
 
-USES=		cmake jpeg kde:5 pkgconfig qt:5 shebangfix tar:xz
+USES=		cmake compiler:c++11-lang jpeg kde:5 pkgconfig qt:5 shebangfix \
+		tar:xz
 USE_KDE=	archive auth codecs completion config \
 		configwidgets coreaddons ecm i18n \
 		iconthemes jobwidgets kio marble service \

Modified: head/graphics/showimage/Makefile
==============================================================================
--- head/graphics/showimage/Makefile	Fri Feb  8 22:46:11 2019	(r492465)
+++ head/graphics/showimage/Makefile	Fri Feb  8 22:50:23 2019	(r492466)
@@ -14,7 +14,7 @@ COMMENT=	Simple KDE based image viewer
 LICENSE=	GPLv3+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		cmake kde:5 qt:5 tar:bzip2
+USES=		cmake compiler:c++11-lang kde:5 qt:5 tar:bzip2
 USE_KDE=	auth bookmarks codecs completion config configwidgets \
 		coreaddons ecm i18n itemviews jobwidgets kio service solid \
 		widgetsaddons xmlgui

Modified: head/multimedia/kaffeine/Makefile
==============================================================================
--- head/multimedia/kaffeine/Makefile	Fri Feb  8 22:46:11 2019	(r492465)
+++ head/multimedia/kaffeine/Makefile	Fri Feb  8 22:50:23 2019	(r492466)
@@ -16,8 +16,8 @@ BUILD_DEPENDS=	v4l_compat>0:multimedia/v4l_compat
 LIB_DEPENDS=	libvlc.so:multimedia/vlc \
 		libdvbv5.so:multimedia/libv4l
 
-USES=		cmake cpe desktop-file-utils gettext pkgconfig \
-		kde:5 qt:5 tar:xz
+USES=		cmake compiler:c++11-lang cpe desktop-file-utils gettext \
+		pkgconfig kde:5 qt:5 tar:xz
 USE_KDE=	auth bookmarks codecs completion config configwidgets \
 		coreaddons i18n itemviews kio solid dbusaddons jobwidgets \
 		service widgetsaddons windowsystem xmlgui

Modified: head/multimedia/phonon-gstreamer/Makefile
==============================================================================
--- head/multimedia/phonon-gstreamer/Makefile	Fri Feb  8 22:46:11 2019	(r492465)
+++ head/multimedia/phonon-gstreamer/Makefile	Fri Feb  8 22:50:23 2019	(r492466)
@@ -35,7 +35,7 @@ USES+=		qt:4
 USE_QT=		corelib gui opengl phonon \
 		qmake_build moc_build rcc_build uic_build
 .  else
-USES+=		kde:5 qt:5
+USES+=		compiler:c++11-lang kde:5 qt:5
 USE_KDE=	ecm
 USE_QT=		core gui opengl phonon4 widgets x11extras \
 		buildtools_build qmake_build

Modified: head/x11-fm/krusader2/Makefile
==============================================================================
--- head/x11-fm/krusader2/Makefile	Fri Feb  8 22:46:11 2019	(r492465)
+++ head/x11-fm/krusader2/Makefile	Fri Feb  8 22:50:23 2019	(r492466)
@@ -15,7 +15,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 CONFLICTS_INSTALL=	krusader2-kde4
 
-USES=		cmake gettext kde:5 qt:5 tar:xz
+USES=		cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz
 USE_KDE=	archive auth auth bookmarks codecs completion config \
 		configwidgets coreaddons doctools ecm guiaddons i18n \
 		iconthemes itemviews jobwidgets kio notifications parts \

Modified: head/x11/yakuake/Makefile
==============================================================================
--- head/x11/yakuake/Makefile	Fri Feb  8 22:46:11 2019	(r492465)
+++ head/x11/yakuake/Makefile	Fri Feb  8 22:50:23 2019	(r492466)
@@ -15,7 +15,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 RUN_DEPENDS=	konsole:x11/konsole
 
-USES=		cmake gettext kde:5 qt:5 tar:xz
+USES=		cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz
 USE_KDE=	attica auth archive codecs completion config configwidgets \
 		coreaddons crash dbusaddons ecm globalaccel i18n iconthemes \
 		jobwidgets kio newstuff notifications notifyconfig parts \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902082250.x18MoOOB082859>