ports/126126: devel/bazaar-ng: Incorrect OPTIONS handling.

UEMURA at FreeBSD.org UEMURA at FreeBSD.org
Thu Jul 31 07:50:02 UTC 2008


>Number:         126126
>Category:       ports
>Synopsis:       devel/bazaar-ng: Incorrect OPTIONS handling.
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Thu Jul 31 07:50:02 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator:     UEMURA, Tetsuya
>Release:        7.0-STABLE amd64
>Organization:
MACOME, Corp.
>Environment:
FreeBSD s2882g3nr.macome.co.jp 7.0-STABLE FreeBSD 7.0-STABLE #1: Wed Jul 30 14:37:43 JST 2008     uemura at s2882g3nr.macome.co.jp:/usr/local/obj/usr/src/sys/S2882G3NR  amd64
>Description:
devel/bazaar-ng/Makefile has the option SFTP and its default value is on. So the expression should be "!defined(WITHOUT_SFTP)" instead of "defined(WITH_SFTP)".
>How-To-Repeat:
cd /usr/ports/deve/bazaar-ng
make -DBATCH -DWITHOUT_SFTP
>Fix:


Patch attached with submission follows:

--- Makefile.orig	2008-05-21 09:53:12.000000000 +0900
+++ Makefile	2008-07-31 16:26:36.000000000 +0900
@@ -30,7 +30,7 @@
 RUN_DEPENDS=	${PYTHON_SITELIBDIR}/cElementTree.so:${PORTSDIR}/devel/py-celementtree
 .endif
 
-.if defined(WITH_SFTP)
+.if !defined(WITHOUT_SFTP)
 RUN_DEPENDS+=	${PYTHON_SITELIBDIR}/paramiko/__init__.py:${PORTSDIR}/security/py-paramiko
 .endif
 


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



More information about the freebsd-ports-bugs mailing list