From owner-svn-ports-all@freebsd.org Fri Dec 16 05:08:12 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2011EC8025A; Fri, 16 Dec 2016 05:08:12 +0000 (UTC) (envelope-from jbeich@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 mx1.freebsd.org (Postfix) with ESMTPS id EEF2F3D7; Fri, 16 Dec 2016 05:08:11 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBG58BOa099182; Fri, 16 Dec 2016 05:08:11 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBG589cY099162; Fri, 16 Dec 2016 05:08:09 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201612160508.uBG589cY099162@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 16 Dec 2016 05:08:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428641 - in head: Mk/Uses audio/csound6 audio/gbsplay cad/kicad cad/openvsp comms/sdr-wspr emulators/pipelight graphics/qgis graphics/shotwell graphics/vigra math/ceres-solver math/oct... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 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, 16 Dec 2016 05:08:12 -0000 Author: jbeich Date: Fri Dec 16 05:08:09 2016 New Revision: 428641 URL: https://svnweb.freebsd.org/changeset/ports/428641 Log: Switch USES=compiler:gcc-c++11-lib to use base libc++ on 10.2+ systems PR: 215192 Requested by: dim Exp-run by: antoine Approved by: antoine Modified: head/Mk/Uses/compiler.mk (contents, props changed) head/audio/csound6/Makefile (contents, props changed) head/audio/gbsplay/Makefile (contents, props changed) head/cad/kicad/Makefile (contents, props changed) head/cad/openvsp/Makefile (contents, props changed) head/comms/sdr-wspr/Makefile (contents, props changed) head/emulators/pipelight/Makefile (contents, props changed) head/graphics/qgis/Makefile (contents, props changed) head/graphics/shotwell/Makefile (contents, props changed) head/graphics/vigra/Makefile (contents, props changed) head/math/ceres-solver/Makefile (contents, props changed) head/math/octave-forge-parallel/Makefile (contents, props changed) head/math/saga/Makefile (contents, props changed) head/multimedia/bombono/Makefile (contents, props changed) head/net/mediatomb/Makefile (contents, props changed) head/print/lilypond-devel/Makefile (contents, props changed) head/science/gnudatalanguage/Makefile (contents, props changed) Modified: head/Mk/Uses/compiler.mk ============================================================================== --- head/Mk/Uses/compiler.mk Fri Dec 16 02:14:29 2016 (r428640) +++ head/Mk/Uses/compiler.mk Fri Dec 16 05:08:09 2016 (r428641) @@ -241,9 +241,18 @@ CXX= ${LOCALBASE}/bin/clang++34 USE_GCC= yes CHOSEN_COMPILER_TYPE= gcc .if ${COMPILER_FEATURES:Mlibc++} +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1001508 LDFLAGS+= -L${LOCALBASE}/lib/c++ CXXFLAGS+= -nostdinc++ -isystem ${LOCALBASE}/include/c++/v1 BUILD_DEPENDS+= ${LOCALBASE}/lib/c++/libstdc++.so:devel/libc++ +.else +CXXFLAGS+= -nostdinc++ -isystem /usr/include/c++/v1 +LDFLAGS+= -L${WRKDIR} + +_USES_configure+= 200:gcc-libc++-configure +gcc-libc++-configure: + @${LN} -fs /usr/lib/libc++.so ${WRKDIR}/libstdc++.so +.endif # OSVERSION < 1001508 .endif .endif Modified: head/audio/csound6/Makefile ============================================================================== --- head/audio/csound6/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/audio/csound6/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -3,7 +3,7 @@ PORTNAME= csound PORTVERSION= 6.06 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}6/${PORTNAME:S/c/C/}${PORTVERSION} PKGNAMESUFFIX= 6 Modified: head/audio/gbsplay/Makefile ============================================================================== --- head/audio/gbsplay/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/audio/gbsplay/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -3,6 +3,7 @@ PORTNAME= gbsplay PORTVERSION= 0.0.93 +PORTREVISION= 1 CATEGORIES= audio MAINTAINER= ehaupt@FreeBSD.org Modified: head/cad/kicad/Makefile ============================================================================== --- head/cad/kicad/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/cad/kicad/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -3,7 +3,7 @@ PORTNAME= kicad DISTVERSION= 20140622%2Bbzr4027 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= cad MASTER_SITES= https://launchpadlibrarian.net/179199115/ Modified: head/cad/openvsp/Makefile ============================================================================== --- head/cad/openvsp/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/cad/openvsp/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -4,6 +4,7 @@ PORTNAME= openvsp PORTVERSION= 3.9.1 DISTVERSIONPREFIX= ${GH_PROJECT}_ +PORTREVISION= 1 CATEGORIES= cad MAINTAINER= fernando.apesteguia@gmail.com Modified: head/comms/sdr-wspr/Makefile ============================================================================== --- head/comms/sdr-wspr/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/comms/sdr-wspr/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -3,8 +3,8 @@ PORTNAME= sdr-wspr PORTVERSION= 0.1.0 -PORTREVISION= 1 DISTVERSIONPREFIX= v +PORTREVISION= 2 CATEGORIES= comms hamradio MAINTAINER= jeff@baitis.net Modified: head/emulators/pipelight/Makefile ============================================================================== --- head/emulators/pipelight/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/emulators/pipelight/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -3,7 +3,7 @@ PORTNAME= pipelight PORTVERSION= 0.2.8.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators MASTER_SITES= https://bitbucket.org/mmueller2012/pipelight/get/ \ http://repos.fds-team.de/pluginloader/v${DISTVERSION}/:plg Modified: head/graphics/qgis/Makefile ============================================================================== --- head/graphics/qgis/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/graphics/qgis/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -4,7 +4,7 @@ PORTNAME= qgis DISTVERSIONPREFIX= final- DISTVERSION= 2_14_3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics geography MAINTAINER= rhurlin@gwdg.de Modified: head/graphics/shotwell/Makefile ============================================================================== --- head/graphics/shotwell/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/graphics/shotwell/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -3,6 +3,7 @@ PORTNAME= shotwell PORTVERSION= 0.24.2 +PORTREVISION= 1 CATEGORIES= graphics gnome MASTER_SITES= GNOME/sources/shotwell/${PORTVERSION:R} Modified: head/graphics/vigra/Makefile ============================================================================== --- head/graphics/vigra/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/graphics/vigra/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -3,7 +3,7 @@ PORTNAME= vigra DISTVERSION= 1.11.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MAINTAINER= ports@FreeBSD.org Modified: head/math/ceres-solver/Makefile ============================================================================== --- head/math/ceres-solver/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/math/ceres-solver/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -2,7 +2,7 @@ PORTNAME= ceres-solver DISTVERSION= 1.12.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MAINTAINER= jbeich@FreeBSD.org Modified: head/math/octave-forge-parallel/Makefile ============================================================================== --- head/math/octave-forge-parallel/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/math/octave-forge-parallel/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -3,7 +3,7 @@ PORTNAME= octave-forge-parallel PORTVERSION= 3.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/saga/Makefile ============================================================================== --- head/math/saga/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/math/saga/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -3,7 +3,7 @@ PORTNAME= saga PORTVERSION= 2.3.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MASTER_SITES= SF/saga-gis/SAGA%20-%20${PORTVERSION:C/\.[[:digit:]]*$//}/SAGA%20${PORTVERSION} DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/multimedia/bombono/Makefile ============================================================================== --- head/multimedia/bombono/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/multimedia/bombono/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -3,7 +3,7 @@ PORTNAME= bombono PORTVERSION= 1.2.2 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-dvd/${PORTVERSION:R} DISTNAME= ${PORTNAME}-dvd-${PORTVERSION} Modified: head/net/mediatomb/Makefile ============================================================================== --- head/net/mediatomb/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/net/mediatomb/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -3,7 +3,7 @@ PORTNAME= mediatomb PORTVERSION= 0.12.1 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= net multimedia MASTER_SITES= SF/${PORTNAME}/MediaTomb/${PORTVERSION} Modified: head/print/lilypond-devel/Makefile ============================================================================== --- head/print/lilypond-devel/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/print/lilypond-devel/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -3,6 +3,7 @@ PORTNAME= lilypond PORTVERSION= 2.19.51 +PORTREVISION= 1 CATEGORIES= print audio MASTER_SITES= http://download.linuxaudio.org/lilypond/sources/v${PORTVERSION:R}/ PKGNAMESUFFIX= -devel Modified: head/science/gnudatalanguage/Makefile ============================================================================== --- head/science/gnudatalanguage/Makefile Fri Dec 16 02:14:29 2016 (r428640) +++ head/science/gnudatalanguage/Makefile Fri Dec 16 05:08:09 2016 (r428641) @@ -3,7 +3,7 @@ PORTNAME= gnudatalanguage DISTVERSION= 0.9.6v2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= science lang MASTER_SITES= SF/${PORTNAME}/gdl/${PORTVERSION:R} .if defined(BUILD_PYTHON_MODULE)