From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 17 16:30:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.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 673C89B1 for ; Wed, 17 Jul 2013 16:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 4B151BF8 for ; Wed, 17 Jul 2013 16:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r6HGU2IO093775 for ; Wed, 17 Jul 2013 16:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r6HGU2GR093743; Wed, 17 Jul 2013 16:30:02 GMT (envelope-from gnats) Resent-Date: Wed, 17 Jul 2013 16:30:02 GMT Resent-Message-Id: <201307171630.r6HGU2GR093743@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tijl Coosemans Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 383B6967 for ; Wed, 17 Jul 2013 16:28:39 +0000 (UTC) (envelope-from tijl@coosemans.org) Received: from mailrelay006.isp.belgacom.be (mailrelay006.isp.belgacom.be [195.238.6.172]) by mx1.freebsd.org (Postfix) with ESMTP id CF6C1BDF for ; Wed, 17 Jul 2013 16:28:38 +0000 (UTC) Received: from 50.172-241-81.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([81.241.172.50]) by relay.skynet.be with ESMTP; 17 Jul 2013 18:28:37 +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 r6HGSZ3D004022 for ; Wed, 17 Jul 2013 18:28:36 +0200 (CEST) (envelope-from tijl@kalimero.tijl.coosemans.org) Received: (from tijl@localhost) by kalimero.tijl.coosemans.org (8.14.7/8.14.7/Submit) id r6HGSZvU004021; Wed, 17 Jul 2013 18:28:35 +0200 (CEST) (envelope-from tijl) Message-Id: <201307171628.r6HGSZvU004021@kalimero.tijl.coosemans.org> Date: Wed, 17 Jul 2013 18:28:35 +0200 (CEST) From: Tijl Coosemans To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/180612: [patch] devel/subversion: let bindings ports load options file. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Tijl Coosemans List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jul 2013 16:30:02 -0000 >Number: 180612 >Category: ports >Synopsis: [patch] devel/subversion: let bindings ports load options file. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 17 16:30:02 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Tijl Coosemans >Release: FreeBSD 10.0-CURRENT i386 >Organization: >Environment: >Description: - Set OPTIONS_NAME to let bindings ports load the new options file. Leave OPTIONSFILE for now to load the old file on systems where it hasn't been moved to the new location yet. - Remove an old hack. >How-To-Repeat: >Fix: --- subversion.patch begins here --- Index: devel/subversion/Makefile.common =================================================================== --- devel/subversion/Makefile.common (revision 323178) +++ devel/subversion/Makefile.common (working copy) @@ -32,7 +32,7 @@ CONFIGURE_ARGS+= --without-swig \ CONFLICTS_BUILD+= ${PORTNAME}-1.[6|7].[0-9]* LIB_DEPENDS+= svn_client-1.0:${PORTSDIR}/devel/subversion OPTIONSFILE= ${PORT_DBDIR}/${PORTNAME}/options -OPTIONS= # Dirty hack: if OPTIONS is not defined, OPTIONSFILE will not be included +OPTIONS_NAME= devel_subversion .endif .include Index: devel/subversion16/Makefile.common =================================================================== --- devel/subversion16/Makefile.common (revision 323099) +++ devel/subversion16/Makefile.common (working copy) @@ -33,7 +33,7 @@ CONFIGURE_ARGS+= --with-ssl \ CONFLICTS_BUILD+= ${PORTNAME}-1.[7|8].[0-9]* LIB_DEPENDS+= svn_client-1.0:${PORTSDIR}/devel/subversion16 OPTIONSFILE= ${PORT_DBDIR}/${PORTNAME}16/options -OPTIONS= # Dirty hack: if OPTIONS is not defined, OPTIONSFILE will not be included +OPTIONS_NAME= devel_subversion16 .endif .include Index: devel/subversion17/Makefile.common =================================================================== --- devel/subversion17/Makefile.common (revision 323099) +++ devel/subversion17/Makefile.common (working copy) @@ -34,7 +34,7 @@ CONFIGURE_ARGS+= --with-ssl \ CONFLICTS_BUILD+= ${PORTNAME}-1.[6|8].[0-9]* LIB_DEPENDS+= svn_client-1.0:${PORTSDIR}/devel/subversion17 OPTIONSFILE= ${PORT_DBDIR}/${PORTNAME}/options -OPTIONS= # Dirty hack: if OPTIONS is not defined, OPTIONSFILE will not be included +OPTIONS_NAME= devel_subversion17 .endif .include --- subversion.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: