From owner-svn-ports-head@FreeBSD.ORG Sun Aug 4 18:12:40 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 88219E76; Sun, 4 Aug 2013 18:12:40 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5B2B6223F; Sun, 4 Aug 2013 18:12:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r74ICdNe045688; Sun, 4 Aug 2013 18:12:39 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r74ICdqR045686; Sun, 4 Aug 2013 18:12:39 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201308041812.r74ICdqR045686@svn.freebsd.org> From: Gerald Pfeifer Date: Sun, 4 Aug 2013 18:12:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r324246 - head/lang/gcc49 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.14 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: Sun, 04 Aug 2013 18:12:40 -0000 Author: gerald Date: Sun Aug 4 18:12:39 2013 New Revision: 324246 URL: http://svnweb.freebsd.org/changeset/ports/324246 Log: Update to the 20130728 snapshot of GCC 4.9.0. Introduce a new option BOOTSTRAP that allows switching between a full bootstrap of GCC and just running a simple build. Bootstrapping is the default upstream, and for very stable and old flavors of GCC we disable this by default since that is a huge win in terms of build time of the port. No change in default behavior for this port -- for the time being we continue to bootstrap. Modified: head/lang/gcc49/Makefile head/lang/gcc49/distinfo Modified: head/lang/gcc49/Makefile ============================================================================== --- head/lang/gcc49/Makefile Sun Aug 4 17:52:01 2013 (r324245) +++ head/lang/gcc49/Makefile Sun Aug 4 18:12:39 2013 (r324246) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 4.9.0.20130630 +PORTVERSION= 4.9.0.20130728 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= snapshots/${VERSIONSTRING} @@ -38,10 +38,13 @@ MAKE_JOBS_SAFE= yes PATCH_WRKSRC= ${SRCDIR} CONFIGURE_SCRIPT= ../${SRCDIR:S/${WRKDIR}\///}/configure +OPTIONS_DEFINE= BOOTSTRAP OPTIONS_DEFINE_i386= JAVA OPTIONS_DEFINE_amd64= JAVA +OPTIONS_DEFAULT= BOOTSTRAP OPTIONS_DEFAULT_i386= JAVA OPTIONS_DEFAULT_amd64= JAVA +BOOTSTRAP_DESC= Build using a full bootstrap .include @@ -62,6 +65,11 @@ TARGLIB= ${PREFIX}/lib/gcc${SUFFIX} LIBEXEC= ${PREFIX}/libexec/gcc${SUFFIX} GNU_CONFIGURE= yes CFLAGS+= -I${LOCALBASE}/include +.if empty(PORT_OPTIONS:MBOOTSTRAP) +CONFIGURE_ARGS+=--disable-bootstrap +.else +ALL_TARGET= bootstrap-lean +.endif CONFIGURE_ARGS+=--disable-nls \ --libdir=${TARGLIB} \ --libexecdir=${LIBEXEC} \ @@ -74,7 +82,6 @@ CONFIGURE_ARGS+=--disable-nls \ --with-pkgversion="FreeBSD Ports Collection" \ --with-system-zlib MAKE_ARGS+= MAKEINFOFLAGS="--no-split" -ALL_TARGET= bootstrap-lean USE_LDCONFIG= ${TARGLIB} PLIST_SUB= GCC_VERSION=${GCC_VERSION} \ GNU_HOST=${CONFIGURE_TARGET} \ Modified: head/lang/gcc49/distinfo ============================================================================== --- head/lang/gcc49/distinfo Sun Aug 4 17:52:01 2013 (r324245) +++ head/lang/gcc49/distinfo Sun Aug 4 18:12:39 2013 (r324246) @@ -1,2 +1,2 @@ -SHA256 (gcc-4.9-20130630.tar.bz2) = c25bbea86c196879e8e8af1227e47b255a7b3e842fbd69c72f6e0564ec4465df -SIZE (gcc-4.9-20130630.tar.bz2) = 83093776 +SHA256 (gcc-4.9-20130728.tar.bz2) = f8630957ef498ec79594f5a0e35b6afed62ffa38331055388d0fc91d60773d19 +SIZE (gcc-4.9-20130728.tar.bz2) = 82415272