Date: Mon, 25 Aug 2008 20:22:54 -0500 From: "Josh Paetzel" <josh@tcbug.org> To: "FreeBSD gnats submit" <FreeBSD-gnats-submit@FreeBSD.org> Subject: ports/126843: [patch] update sysutils/nut to use www/neon28 Message-ID: <1219713774.15035@homebase.tcbug.org> Resent-Message-ID: <200808260130.m7Q1U4MB014295@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 126843 >Category: ports >Synopsis: [patch] update sysutils/nut to use www/neon28 >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: Tue Aug 26 01:30:04 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: sysutils/nut has an optional dependancy on www/neon26 which is a superset of and CONFLICTS with www/neon28. If neon28 is installed it will cause nut to bomb out. >How-To-Repeat: Install anything that depends on www/neon28 (subversion, trac, kde3) # cd /usr/ports/sysutils/nut # make -DBATCH install dies due to CONFLICTS between neon26 and neon28 >Fix: --- Makefile.old 2008-08-26 01:12:18.000000000 +0000 +++ Makefile 2008-08-26 01:13:12.000000000 +0000 @@ -116,7 +116,11 @@ .endif .if !defined(WITHOUT_NEON) -LIB_DEPENDS+= neon.26:${PORTSDIR}/www/neon26 +.if exists(${LOCALBASE}/lib/libneon.so.26) +LIB_DEPENDS+= neon.26:${PORTSDIR}/www/neon26 +.else +LIB_DEPENDS+= neon.28:${PORTSDIR}/www/neon28 +.endif CONFIGURE_ARGS+= --with-neonxml MAN8+= netxml-ups.8 PLIST_SUB+= NUT_NEON="" >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1219713774.15035>