From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 9 17:10:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D72F61065672 for ; Sun, 9 Sep 2012 17:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C26268FC14 for ; Sun, 9 Sep 2012 17:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q89HA95I002578 for ; Sun, 9 Sep 2012 17:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q89HA9m3002563; Sun, 9 Sep 2012 17:10:09 GMT (envelope-from gnats) Date: Sun, 9 Sep 2012 17:10:09 GMT Message-Id: <201209091710.q89HA9m3002563@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/171509: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Sep 2012 17:10:09 -0000 The following reply was made to PR ports/171509; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/171509: commit references a PR Date: Sun, 9 Sep 2012 17:02:07 +0000 (UTC) Author: ohauer Date: Sun Sep 9 17:01:30 2012 New Revision: 303982 URL: http://svn.freebsd.org/changeset/ports/303982 Log: - notice the users that old WITH/WITHOUT parameters are obsolete. Point them to the wiki Thanks to crees@ for this suggestion to implement this direct in the port PR: 171509 Modified: head/www/apache22/Makefile Modified: head/www/apache22/Makefile ============================================================================== --- head/www/apache22/Makefile Sun Sep 9 16:53:12 2012 (r303981) +++ head/www/apache22/Makefile Sun Sep 9 17:01:30 2012 (r303982) @@ -47,6 +47,24 @@ WITH_HTTP_PORT?= 80 MPM_ITK_VERSION?= 20110321-01 .include "${APACHEDIR}/Makefile.options" + +# stop users from using old WITH/WITHOUT parameters +.for opt in ${OPTIONS_DEFINE} +. if defined(WITH_${opt}) || defined(WITHOUT_${opt}) +BROKEN= WITH/WITHOUT parameters are obsolete. \ + The port use the new options NG framework. Please read\ + http://wiki.freebsd.org/Ports/Options/OptionsNG +. endif +.endfor + +.for cat in ${ALL_MODULES_CATEGORIES} +. if defined(WITH_${cat}_MODULES) +BROKEN= WITH/WITHOUT_..._MODULES parameters are obsolete. \ + The port use the new options NG framework. Please read\ + http://wiki.freebsd.org/Ports/Options/OptionsNG +. endif +.endfor + .include .include "${APACHEDIR}/Makefile.doc" _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"