From owner-svn-ports-head@FreeBSD.ORG Thu Jan 3 05:25:59 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]) by hub.freebsd.org (Postfix) with ESMTP id 3D4C5451; Thu, 3 Jan 2013 05:25:59 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 2D6DB653; Thu, 3 Jan 2013 05:25:59 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r035PxRj040142; Thu, 3 Jan 2013 05:25:59 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r035PxVf040141; Thu, 3 Jan 2013 05:25:59 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201301030525.r035PxVf040141@svn.freebsd.org> From: Gerald Pfeifer Date: Thu, 3 Jan 2013 05:25:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309853 - head/lang/gcc34 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: Thu, 03 Jan 2013 05:25:59 -0000 Author: gerald Date: Thu Jan 3 05:25:58 2013 New Revision: 309853 URL: http://svnweb.freebsd.org/changeset/ports/309853 Log: Update (and soften) DEPRECATED statement. Mark BROKEN on FreeBSD 10.0 and later. Reported by: erwin Modified: head/lang/gcc34/Makefile Modified: head/lang/gcc34/Makefile ============================================================================== --- head/lang/gcc34/Makefile Thu Jan 3 00:36:55 2013 (r309852) +++ head/lang/gcc34/Makefile Thu Jan 3 05:25:58 2013 (r309853) @@ -21,8 +21,6 @@ DISTFILES= gcc-core-${VERSIONSTRING}${EX MAINTAINER= gerald@FreeBSD.org COMMENT= GNU Compiler Collection 3.4 -DEPRECATED= Superseded by GCC 4.6 and later, only kept for the sake of three obsolete ports - SUFFIX= 34 LATEST_LINK= gcc${SUFFIX}${PKGNAMESUFFIX} USE_BISON= build @@ -37,6 +35,12 @@ CONFIGURE_SCRIPT= ../${SRCDIR:C/${WRKDIR .include +DEPRECATED= Superseded by GCC 4.6 and later, kept for the sake of two obsolete ports + +.if ${OSVERSION} >= 1000000 +BROKEN= Does not compile on FreeBSD 10.0 and later +.endif + .if ${ARCH} == "amd64" CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL} .else