ports/126840: [PATCH] update sysutils/fusefs-wdfs to use neon28 if possible

Josh Paetzel josh at tcbug.org
Tue Aug 26 01:20:02 UTC 2008


>Number:         126840
>Category:       ports
>Synopsis:       [PATCH] update sysutils/fusefs-wdfs to use neon28 if possible
>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 Aug 26 01:20:01 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 at homebase.tcbug.org:/usr/obj/usr/src/sys/HOMEBASE



>Description:


sysutils/fusefs-wdfs depends on www/neon26 which is a subset of but CONFLICTS with www/neon28.  The following patch will use neon26 if it's installed, otherwise it will pull in neon28 


>How-To-Repeat:


Install some that depends on neon28 (subversion, trac, kde3)

cd /usr/ports/sysutils/fusefs-wdfs
make install

watch it bomb as it tries to build www/neon26


>Fix:


--- Makefile.old        2008-08-21 06:24:14.000000000 +0000
+++ Makefile    2008-08-21 06:25:15.000000000 +0000
@@ -15,8 +15,14 @@
 MAINTAINER=    tgyurci at freemail.hu
 COMMENT=       Mount remote WedDAV directories with Fuse

-LIB_DEPENDS=   fuse.2:${PORTSDIR}/sysutils/fusefs-libs \
-               neon.26:${PORTSDIR}/www/neon26
+LIB_DEPENDS=   fuse.2:${PORTSDIR}/sysutils/fusefs-libs
+
+.if exists(${LOCALBASE}/lib/libneon.so.26)
+LIB_DEPENDS+=   neon.26:${PORTSDIR}/www/neon26
+.else
+LIB_DEPENDS+=   neon.28:${PORTSDIR}/www/neon28
+.endif
+
 RUN_DEPENDS=   ${LOCALBASE}/modules/fuse.ko:${PORTSDIR}/sysutils/fusefs-kmod

 GNU_CONFIGURE= yes



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



More information about the freebsd-ports-bugs mailing list