Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Jun 2010 22:51:28 GMT
From:      Benjamin Lee <ben@b1c1l1.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/147300: devel/subversion should allow NEON_VER to be configurable
Message-ID:  <201006012251.o51MpSPB077102@www.freebsd.org>
Resent-Message-ID: <201006012300.o51N0BHP035981@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         147300
>Category:       ports
>Synopsis:       devel/subversion should allow NEON_VER to be configurable
>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:   Tue Jun 01 23:00:11 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Benjamin Lee
>Release:        8.0-RELEASE
>Organization:
>Environment:
FreeBSD eclipse.b1c1l1.com 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #0: Tue Jan  5 16:02:27 UTC 2010     root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC  i386
>Description:
The devel/subversion port should allow NEON_VER to be configurable.  Currently it forces the version without providing any way to override it.
>How-To-Repeat:
Install devel/subversion from ports.
>Fix:
Apply the attached patch to Makefile.common, which will allow NEON_VER to be specified by the user.

Patch attached with submission follows:

--- Makefile.common.orig	2010-05-30 18:58:26.000000000 -0700
+++ Makefile.common	2010-06-01 15:48:46.000000000 -0700
@@ -43,12 +43,14 @@
 
 # Default is "on"
 .if !defined(WITHOUT_NEON)
+.if !defined(NEON_VER)
 .if exists(${LOCALBASE}/bin/neon-config)
 NEON_VER!=	${LOCALBASE}/bin/neon-config --version | \
 		${SED} -n -E  's/^neon [0-9]+\.([0-9]+)\..*$$/\1/p'
 .else
 NEON_VER=      29
 .endif
+.endif
 LIB_DEPENDS+=	neon.${NEON_VER}:${PORTSDIR}/www/neon${NEON_VER}
 PLIST_SUB+=		NEON=""
 .else


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201006012251.o51MpSPB077102>