Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 Jul 2008 07:41:57 GMT
From:      UEMURA@FreeBSD.org, Tetsuya <t_uemura@macome.co.jp>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/126126: devel/bazaar-ng: Incorrect OPTIONS handling.
Message-ID:  <200807310741.m6V7fve0079301@www.freebsd.org>
Resent-Message-ID: <200807310750.m6V7o2FT004209@freefall.freebsd.org>

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

>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@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:



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