Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 27 Apr 2003 16:02:04 +0200 (CEST)
From:      Guido Berhoerster <ich@guido-berhoerster.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/51460: [PATCH] x11-wm/fvwm2-devel broken due to wrong dependency
Message-ID:  <200304271402.h3RE24EB012202@hal.privat.lan>
Resent-Message-ID: <200304271410.h3READst092078@freefall.freebsd.org>

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

>Number:         51460
>Category:       ports
>Synopsis:       [PATCH] x11-wm/fvwm2-devel broken due to wrong dependency
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sun Apr 27 07:10:12 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     Guido Berhoerster
>Release:        FreeBSD 4.8-RELEASE i386
>Organization:
>Environment:
System: FreeBSD hal.privat.lan 4.8-RELEASE FreeBSD 4.8-RELEASE #1: Fri Apr 4 15:35:08 CEST 2003 root@hal.privat.lan:/usr/obj/usr/src/sys/HAL i386

>Description:
x11-wm/fvwm2-devel depends on converters/iconv. The LIB_DEPENDS
points to iconv.2 but the librarary installed by converters/iconv is
called libbiconv.so.2 and thus the dependency fails and the build
breaks.
>How-To-Repeat:
cd /usr/ports/x11-wm/fvwm2-devel/ && make install
>Fix:

The LIB_DEPENDS needs to point to biconv.2 not iconv.2, apply the
following patch:

--- Makefile.diff begins here ---
--- Makefile.orig	Sat Apr 26 15:42:27 2003
+++ Makefile	Sun Apr 27 15:36:37 2003
@@ -55,7 +55,7 @@
 .endif
 
 .if !defined(WITHOUT_ICONV)
-LIB_DEPENDS+=	iconv.2:${PORTSDIR}/converters/iconv
+LIB_DEPENDS+=	biconv.2:${PORTSDIR}/converters/iconv
 CONFIGURE_ARGS+=	--with-iconv-lib=/usr/local/lib \
 			--with-iconv-includes=/usr/local/include
 .endif
--- Makefile.diff ends here ---


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



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