From owner-svn-ports-all@FreeBSD.ORG Mon Jun 10 08:06:19 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id ADDA7B8; Mon, 10 Jun 2013 08:06:19 +0000 (UTC) (envelope-from tijl@freebsd.org) Received: from mailrelay002.isp.belgacom.be (mailrelay002.isp.belgacom.be [195.238.6.175]) by mx1.freebsd.org (Postfix) with ESMTP id D5B73113D; Mon, 10 Jun 2013 08:06:18 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AlgGALWHtVFbsWuP/2dsb2JhbABagwkwgz27SX0XdIIjAQEEASMzIwULCw4GBAICBRYLAgIJAwIBAgEnHgYNAQcBAYgDCgioDpBlgSaNXzMHgkyBFAOYaZAZgxE6 Received: from 143.107-177-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.177.107.143]) by relay.skynet.be with ESMTP; 10 Jun 2013 10:06:10 +0200 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.7/8.14.7) with ESMTP id r5A869wR001288; Mon, 10 Jun 2013 10:06:09 +0200 (CEST) (envelope-from tijl@FreeBSD.org) Message-ID: <51B588F1.6000803@FreeBSD.org> Date: Mon, 10 Jun 2013 10:06:09 +0200 From: Tijl Coosemans User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/20130517 Thunderbird/17.0.6 MIME-Version: 1.0 To: Baptiste Daroussin Subject: Re: svn commit: r320440 - head/Mk References: <201306100727.r5A7R6o3069957@svn.freebsd.org> In-Reply-To: <201306100727.r5A7R6o3069957@svn.freebsd.org> X-Enigmail-Version: 1.5.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 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: Mon, 10 Jun 2013 08:06:19 -0000 On 2013-06-10 09:27, Baptiste Daroussin wrote: > Author: bapt > Date: Mon Jun 10 07:27:05 2013 > New Revision: 320440 > URL: http://svnweb.freebsd.org/changeset/ports/320440 > > Log: > Removed useless quotes > > Modified: > head/Mk/bsd.gstreamer.mk > head/Mk/bsd.options.mk These two seem unintended. > head/Mk/bsd.port.mk > > Modified: head/Mk/bsd.gstreamer.mk > ============================================================================== > --- head/Mk/bsd.gstreamer.mk Mon Jun 10 07:18:36 2013 (r320439) > +++ head/Mk/bsd.gstreamer.mk Mon Jun 10 07:27:05 2013 (r320440) > @@ -60,6 +60,8 @@ GST1_MINOR_VERSION= .0 > GST1_SHLIB_VERSION= 0 > GST1_MINIMAL_VERSION= .5 > > +MAKE_ENV+= GI_SCANNER_DISABLE_CACHE=yes > + > # > # missing base: alsa ivorbisdec > # missing good: pulseaudio(need newer pulse version) > > Modified: head/Mk/bsd.options.mk > ============================================================================== > --- head/Mk/bsd.options.mk Mon Jun 10 07:18:36 2013 (r320439) > +++ head/Mk/bsd.options.mk Mon Jun 10 07:27:05 2013 (r320440) > @@ -306,10 +306,51 @@ WITH_${opt}:= true > .endif > . undef opt > .endfor > -.endif > ### > > +.for opt in ${COMPLETE_OPTIONS_LIST} > +# PLIST_SUB > +PLIST_SUB?= > +. if defined(OPTIONS_SUB) > +. if ! ${PLIST_SUB:M${opt}=*} > +. if ${PORT_OPTIONS:M${opt}} > +PLIST_SUB:= ${PLIST_SUB} ${opt}="" > +. else > +PLIST_SUB:= ${PLIST_SUB} ${opt}="@comment " > +. endif > +. endif > +. endif > + > +. if ${PORT_OPTIONS:M${opt}} > +. if defined(${opt}_CONFIGURE_ENABLE) > +CONFIGURE_ARGS+= --enable-${${opt}_CONFIGURE_ENABLE} > +. endif > +. if defined(${opt}_CONFIGURE_ON) > +CONFIGURE_ARGS+= ${${opt}_CONFIGURE_ON} > +. endif > +. for flags in CFLAGS CXXFLAGS LDFLAGS CONFIGURE_ENV MAKE_ENV USES DISTFILES > +. if defined(${opt}_${flags}) > +${flags}+= ${${opt}_${flags}} > +. endif > +. endfor > +. for deptype in PKG EXTRACT PATCH FETCH BUILD LIB RUN > +. if defined(${opt}_${deptype}_DEPENDS) > +${deptype}_DEPENDS+= ${${opt}_${deptype}_DEPENDS} > +. endif > +. endfor > +. else > +. if defined(${opt}_CONFIGURE_ENABLE) > +CONFIGURE_ARGS+= --disable-${${opt}_CONFIGURE_ENABLE} > +. endif > +. if defined(${opt}_CONFIGURE_OFF) > +CONFIGURE_ARGS+= ${${opt}_CONFIGURE_OFF} > +. endif > +. endif > +.endfor > + > _OPTIONS_WITHOUT_GLOBALS:= ${COMPLETE_OPTIONS_LIST} > .for opt in ${GLOBAL_OPTIONS} > _OPTIONS_WITHOUT_GLOBALS:= ${_OPTIONS_WITHOUT_GLOBALS:N${opt}} > .endfor > + > +.endif > > Modified: head/Mk/bsd.port.mk > ============================================================================== > --- head/Mk/bsd.port.mk Mon Jun 10 07:18:36 2013 (r320439) > +++ head/Mk/bsd.port.mk Mon Jun 10 07:27:05 2013 (r320440) > @@ -6175,9 +6175,9 @@ config-conditional: pre-config > > .if !target(showconfig) > .include "${PORTSDIR}/Mk/bsd.options.desc.mk" > -MULTI_EOL= ": you have to choose at least one of them" > -SINGLE_EOL= ": you have to select exactly one of them" > -RADIO_EOL= ": you can only select none or one of them" > +MULTI_EOL= : you have to choose at least one of them > +SINGLE_EOL= : you have to select exactly one of them > +RADIO_EOL= : you can only select none or one of them > showconfig: > .if !empty(COMPLETE_OPTIONS_LIST) > @${ECHO_MSG} "===> The following configuration options are available for ${PKGNAME}":