From owner-svn-ports-all@freebsd.org Fri Feb 8 22:50:26 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A650314C936E; Fri, 8 Feb 2019 22:50:26 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5048F70BE7; Fri, 8 Feb 2019 22:50:26 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3ECB51FC5F; Fri, 8 Feb 2019 22:50:26 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x18MoQ5k082869; Fri, 8 Feb 2019 22:50:26 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x18MoOOB082859; Fri, 8 Feb 2019 22:50:24 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201902082250.x18MoOOB082859@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Fri, 8 Feb 2019 22:50:24 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head: audio/juk databases/kexi games/knights games/ksudoku graphics/kphotoalbum graphics/showimage multimedia/kaffeine multimedia/phonon-gstreamer x11-fm/krusader2 x11/yakuake X-SVN-Commit-Revision: 492466 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5048F70BE7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Feb 2019 22:50:26 -0000 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 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 \