From owner-svn-ports-all@FreeBSD.ORG Fri May 2 19:05:02 2014 Return-Path: Delivered-To: svn-ports-all@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 ESMTPS id CD515B03; Fri, 2 May 2014 19:05:02 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB0091FBB; Fri, 2 May 2014 19:05:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s42J52w7003207; Fri, 2 May 2014 19:05:02 GMT (envelope-from tijl@svn.freebsd.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s42J52sl003206; Fri, 2 May 2014 19:05:02 GMT (envelope-from tijl@svn.freebsd.org) Message-Id: <201405021905.s42J52sl003206@svn.freebsd.org> From: Tijl Coosemans Date: Fri, 2 May 2014 19:05:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r352839 - head/Mk 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.17 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, 02 May 2014 19:05:02 -0000 Author: tijl Date: Fri May 2 19:05:02 2014 New Revision: 352839 URL: http://svnweb.freebsd.org/changeset/ports/352839 QAT: https://qat.redports.org/buildarchive/r352839/ Log: Mark USE_AUTOTOOLS=libtool and USE_GNOME=ltverhack deprecated. PR: ports/189244 Approved by: portmgr (antoine) Modified: head/Mk/bsd.sanity.mk Modified: head/Mk/bsd.sanity.mk ============================================================================== --- head/Mk/bsd.sanity.mk Fri May 2 19:00:04 2014 (r352838) +++ head/Mk/bsd.sanity.mk Fri May 2 19:05:02 2014 (r352839) @@ -55,10 +55,6 @@ DEV_WARNING+= "USE_GNOME=gnomehack is de DEV_WARNING+= "USE_GNOME=desktopfileutils is deprecated, please use USES=desktop-file-utils" .endif -#.if defined(USE_GNOME) && ${USE_GNOME:Mltverhack*} -#DEV_WARNING+= "USE_GNOME=ltverhack is now useless LIB_DEPENDS can properly handle all kind of library version" -#.endif - .if defined(LIB_DEPENDS) && ${LIB_DEPENDS:Nlib*} DEV_WARNING+= "Please use the new format for LIB_DEPENDS, see handbook for details" .endif @@ -112,6 +108,14 @@ DEV_WARNING+= "USE_PYDISTUTILS=easy_inst DEV_WARNING+= "PYDISTUTILS_PKGNAME has no effect for USE_PYDISTUTILS=yes and PYDISTUTILS_AUTOPLIST=yes" .endif +.if defined(USE_AUTOTOOLS) && (${USE_AUTOTOOLS:Mlibtool} || ${USE_AUTOTOOLS:Mlibtool\:env}) +DEV_WARNING+= "USE_AUTOTOOLS=libtool is deprecated, please use USES=libtool" +.endif + +.if defined(USE_GNOME) && ${USE_GNOME:Mltverhack*} +DEV_WARNING+= "USE_GNOME=ltverhack is deprecated, please use USES=libtool" +.endif + SANITY_UNSUPPORTED= USE_OPENAL USE_FAM USE_MAKESELF USE_ZIP USE_LHA USE_CMAKE \ USE_READLINE USE_ICONV PERL_CONFIGURE PERL_MODBUILD \ USE_PERL5_BUILD USE_PERL5_RUN USE_DISPLAY USE_FUSE \