From owner-svn-ports-head@freebsd.org Fri Nov 25 21:27:39 2016 Return-Path: Delivered-To: svn-ports-head@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 B7490C55C7D; Fri, 25 Nov 2016 21:27:39 +0000 (UTC) (envelope-from gerald@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 8B1DF286; Fri, 25 Nov 2016 21:27:39 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAPLRcqd029486; Fri, 25 Nov 2016 21:27:38 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAPLRbmZ029474; Fri, 25 Nov 2016 21:27:37 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201611252127.uAPLRbmZ029474@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Fri, 25 Nov 2016 21:27:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427129 - in head: biology/seqan-apps devel/bisoncpp devel/libbobcat devel/pure-stldict emulators/dolphin-emu lang/cilkplus lang/gcc6 lang/gcc6-devel lang/gcc7-devel lang/ruby21 lang/ru... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Nov 2016 21:27:39 -0000 Author: gerald Date: Fri Nov 25 21:27:37 2016 New Revision: 427129 URL: https://svnweb.freebsd.org/changeset/ports/427129 Log: Replace USE_GCC=4.9+ by USE_GCC=yes, now that lang/gcc and the default version for GCC in the Ports Collection have moved to GCC 4.9. Modified: head/biology/seqan-apps/Makefile head/devel/bisoncpp/Makefile head/devel/libbobcat/Makefile head/devel/pure-stldict/Makefile head/emulators/dolphin-emu/Makefile head/lang/cilkplus/Makefile head/lang/gcc6-devel/Makefile head/lang/gcc6/Makefile head/lang/gcc7-devel/Makefile head/lang/ruby21/Makefile head/lang/ruby22/Makefile head/lang/ruby23/Makefile Modified: head/biology/seqan-apps/Makefile ============================================================================== --- head/biology/seqan-apps/Makefile Fri Nov 25 21:14:57 2016 (r427128) +++ head/biology/seqan-apps/Makefile Fri Nov 25 21:27:37 2016 (r427129) @@ -24,7 +24,7 @@ GH_PROJECT= seqan USES= cmake:outsource CMAKE_ARGS= -DSEQAN_BUILD_SYSTEM="SEQAN_RELEASE_APPS" -USE_GCC= 4.9+ +USE_GCC= yes .include Modified: head/devel/bisoncpp/Makefile ============================================================================== --- head/devel/bisoncpp/Makefile Fri Nov 25 21:14:57 2016 (r427128) +++ head/devel/bisoncpp/Makefile Fri Nov 25 21:27:37 2016 (r427129) @@ -20,7 +20,7 @@ PORTDOCS= * WRKSRC= ${WRKDIR}/bisonc++-${PORTVERSION} -USE_GCC= 4.9+ +USE_GCC= yes USES= shebangfix Modified: head/devel/libbobcat/Makefile ============================================================================== --- head/devel/libbobcat/Makefile Fri Nov 25 21:14:57 2016 (r427128) +++ head/devel/libbobcat/Makefile Fri Nov 25 21:27:37 2016 (r427129) @@ -15,7 +15,7 @@ LICENSE= GPLv3 BUILD_DEPENDS= icmake:devel/icmake \ yodl>=3.0:textproc/yodl -USE_GCC= 4.9+ +USE_GCC= yes USE_XORG= x11 DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION} Modified: head/devel/pure-stldict/Makefile ============================================================================== --- head/devel/pure-stldict/Makefile Fri Nov 25 21:14:57 2016 (r427128) +++ head/devel/pure-stldict/Makefile Fri Nov 25 21:27:37 2016 (r427129) @@ -26,7 +26,7 @@ OPTIONS_DEFINE= DOCS EXAMPLES .include .if ${OSVERSION} <= 1000000 -USE_GCC= 4.9+ +USE_GCC= yes .endif post-install: Modified: head/emulators/dolphin-emu/Makefile ============================================================================== --- head/emulators/dolphin-emu/Makefile Fri Nov 25 21:14:57 2016 (r427128) +++ head/emulators/dolphin-emu/Makefile Fri Nov 25 21:27:37 2016 (r427129) @@ -85,9 +85,9 @@ NLS_CMAKE_OFF= -DDISABLE_NLS:BOOL=ON CMAKE_ARGS+= -DENABLE_GENERIC:BOOL=ON .endif -# When building with Gcc, needs Gcc 4.9+ +# When building with GCC, needs GCC 4.9+ .if ${COMPILER_TYPE} == gcc && ${COMPILER_VERSION} < 49 -USE_GCC= 4.9+ +USE_GCC= yes # Enable std::stoul() CXXFLAGS+= -D_GLIBCXX_USE_C99 # Enable log2f(), exp2f() and roundf() Modified: head/lang/cilkplus/Makefile ============================================================================== --- head/lang/cilkplus/Makefile Fri Nov 25 21:14:57 2016 (r427128) +++ head/lang/cilkplus/Makefile Fri Nov 25 21:27:37 2016 (r427129) @@ -15,7 +15,7 @@ LICENSE= BSD3CLAUSE HG_REVISION= 004467 -USE_GCC= 4.9+ +USE_GCC= yes ONLY_FOR_ARCHS= i386 amd64 sparc64 Modified: head/lang/gcc6-devel/Makefile ============================================================================== --- head/lang/gcc6-devel/Makefile Fri Nov 25 21:14:57 2016 (r427128) +++ head/lang/gcc6-devel/Makefile Fri Nov 25 21:27:37 2016 (r427129) @@ -70,7 +70,7 @@ CONFIGURE_TARGET= x86_64-portbld-${OPSYS .if ${ARCH} == powerpc64 CONFIGURE_ENV+= UNAME_m="powerpc64" -USE_GCC= 4.9+ +USE_GCC= yes .endif .if ${ARCH} == "armv6" || ${ARCH} == "armv6hf" Modified: head/lang/gcc6/Makefile ============================================================================== --- head/lang/gcc6/Makefile Fri Nov 25 21:14:57 2016 (r427128) +++ head/lang/gcc6/Makefile Fri Nov 25 21:27:37 2016 (r427129) @@ -70,7 +70,7 @@ CONFIGURE_TARGET= x86_64-portbld-${OPSYS .if ${ARCH} == powerpc64 CONFIGURE_ENV+= UNAME_m="powerpc64" -USE_GCC= 4.9+ +USE_GCC= yes .endif .if ${ARCH} == "armv6" || ${ARCH} == "armv6hf" Modified: head/lang/gcc7-devel/Makefile ============================================================================== --- head/lang/gcc7-devel/Makefile Fri Nov 25 21:14:57 2016 (r427128) +++ head/lang/gcc7-devel/Makefile Fri Nov 25 21:27:37 2016 (r427129) @@ -61,7 +61,7 @@ CONFIGURE_TARGET= x86_64-portbld-${OPSYS .if ${ARCH} == powerpc64 CONFIGURE_ENV+= UNAME_m="powerpc64" -USE_GCC= 4.9+ +USE_GCC= yes .endif .if ${ARCH} == "armv6" || ${ARCH} == "armv6hf" Modified: head/lang/ruby21/Makefile ============================================================================== --- head/lang/ruby21/Makefile Fri Nov 25 21:14:57 2016 (r427128) +++ head/lang/ruby21/Makefile Fri Nov 25 21:27:37 2016 (r427129) @@ -97,7 +97,7 @@ CONFIGURE_ARGS+= --disable-dtrace .endif .if (${ARCH} == "powerpc64" || ${ARCH} == "powerpc") -USE_GCC= 4.9+ +USE_GCC= yes .endif .if ${ARCH} == "armv6" || ${ARCH} == "armv6hf" Modified: head/lang/ruby22/Makefile ============================================================================== --- head/lang/ruby22/Makefile Fri Nov 25 21:14:57 2016 (r427128) +++ head/lang/ruby22/Makefile Fri Nov 25 21:27:37 2016 (r427129) @@ -98,7 +98,7 @@ CONFIGURE_ARGS+= --disable-dtrace .endif .if ${ARCH} == "powerpc" || ${ARCH} == "powerpc64" -USE_GCC= 4.9+ +USE_GCC= yes .endif .if ${ARCH} == "armv6" || ${ARCH} == "armv6hf" Modified: head/lang/ruby23/Makefile ============================================================================== --- head/lang/ruby23/Makefile Fri Nov 25 21:14:57 2016 (r427128) +++ head/lang/ruby23/Makefile Fri Nov 25 21:27:37 2016 (r427129) @@ -97,7 +97,7 @@ CONFIGURE_ARGS+=--disable-dtrace .endif .if (${ARCH} == "powerpc64" || ${ARCH} == "powerpc") -USE_GCC= 4.9+ +USE_GCC= yes .endif .if ${ARCH} == "armv6" || ${ARCH} == "armv6hf"