Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Aug 2008 01:22:32 -0500
From:      "Josh Paetzel" <josh@tcbug.org>
To:        "FreeBSD gnats submit" <FreeBSD-gnats-submit@FreeBSD.org>
Subject:   ports/126705: [patch] devel/bazaar Update neon dependancy
Message-ID:  <1219299752.17763@homebase.tcbug.org>
Resent-Message-ID: <200808210630.m7L6U6He048973@freefall.freebsd.org>

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

>Number:         126705
>Category:       ports
>Synopsis:       [patch] devel/bazaar Update neon dependancy
>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:   Thu Aug 21 06:30:06 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator:     Josh Paetzel
>Release:        FreeBSD 7.0-STABLE i386
>Organization:
>Environment:


System: FreeBSD 7.0-STABLE #4: Wed Aug 13 15:01:58 UTC 2008
    jpaetzel@homebase.tcbug.org:/usr/obj/usr/src/sys/HOMEBASE



>Description:


devel/bazaar depends on www/neon26 which CONFLICTS with and is backwards compatable with neon28.  This patch updates the port to use neon26 if it's installed, otherwise depend on neon28


>How-To-Repeat:


Install something that pulls in neon28 (KDE, subversion, trac)

cd /usr/ports/devel/bazaar && make install

bombs due to CONFLICT between neon26 and the already installed neon28


>Fix:


--- Makefile.old        2008-08-21 06:11:46.000000000 +0000
+++ Makefile    2008-08-21 06:17:17.000000000 +0000
@@ -19,8 +19,13 @@
                gdiff:${PORTSDIR}/textproc/diffutils \
                gtar:${PORTSDIR}/archivers/gtar
 RUN_DEPENDS=   ${BUILD_DEPENDS}
-LIB_DEPENDS=   neon.26:${PORTSDIR}/www/neon26 \
-               gpgme.17:${PORTSDIR}/security/gpgme
+LIB_DEPENDS=   gpgme.17:${PORTSDIR}/security/gpgme
+
+.if exists(${LOCALBASE}/lib/libneon.so.26)
+LIB_DEPENDS+=   neon.26:${PORTSDIR}/www/neon26
+.else
+LIB_DEPENDS+=   neon.28:${PORTSDIR}/www/neon28
+.endif

 USE_GMAKE=     yes
 USE_GETTEXT=   yes



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



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