From owner-svn-ports-all@freebsd.org Fri Sep 9 06:13:40 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 77E07BD2F4C; Fri, 9 Sep 2016 06:13:40 +0000 (UTC) (envelope-from swills@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 47637AFF; Fri, 9 Sep 2016 06:13:40 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u896Ddw9031762; Fri, 9 Sep 2016 06:13:39 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u896DdIB031761; Fri, 9 Sep 2016 06:13:39 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609090613.u896DdIB031761@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 9 Sep 2016 06:13:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421598 - head/devel/powerpc64-gcc 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, 09 Sep 2016 06:13:40 -0000 Author: swills Date: Fri Sep 9 06:13:39 2016 New Revision: 421598 URL: https://svnweb.freebsd.org/changeset/ports/421598 Log: devel/powerpc64-gcc: use libc++ Approved by: bapt (maintainer) Modified: head/devel/powerpc64-gcc/Makefile Modified: head/devel/powerpc64-gcc/Makefile ============================================================================== --- head/devel/powerpc64-gcc/Makefile Fri Sep 9 06:07:29 2016 (r421597) +++ head/devel/powerpc64-gcc/Makefile Fri Sep 9 06:13:39 2016 (r421598) @@ -2,6 +2,7 @@ PORTNAME= gcc PORTVERSION= 5.3.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= GCC/releases/gcc-${DISTVERSION} PKGNAMEPREFIX?= powerpc64- @@ -12,6 +13,8 @@ COMMENT= Cross GNU Compiler Collection f LICENSE= GPLv3 GPLv3RLE LICENSE_COMB= multi +CONFIGURE_ENV= gcc_gxx_include_dir="/usr/include/c++/v1" + USES= gmake iconv libtool tar:bzip2 makeinfo compiler PLIST_SUB= TARGETARCH=${PKGNAMEPREFIX:C/-//g} \ OPSYS=${OPSYS:tl} \ @@ -54,6 +57,10 @@ BROKEN_FreeBSD9= plist is different on 9 .include +post-patch: + @${REINPLACE_CMD} -e '/LIBSTDCXX/ s/stdc\+\+/c\+\+/g ' \ + ${WRKSRC}//gcc/cp/g++spec.c + .if ${ARCH} == "amd64" CONFIGURE_TARGET= x86_64-portbld-${OPSYS:tl}${OSREL} .else