From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Apr 27 07:10:14 2003 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7912237B401 for ; Sun, 27 Apr 2003 07:10:14 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6052143F93 for ; Sun, 27 Apr 2003 07:10:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3READUp092079 for ; Sun, 27 Apr 2003 07:10:13 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3READst092078; Sun, 27 Apr 2003 07:10:13 -0700 (PDT) Resent-Date: Sun, 27 Apr 2003 07:10:13 -0700 (PDT) Resent-Message-Id: <200304271410.h3READst092078@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Guido Berhoerster Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A054237B401 for ; Sun, 27 Apr 2003 07:02:17 -0700 (PDT) Received: from helium.webpack.hosteurope.de (helium.one-2-one.net [217.115.142.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7FE343FAF for ; Sun, 27 Apr 2003 07:02:15 -0700 (PDT) (envelope-from ich@guido-berhoerster.org) Received: from hal.privat.lan (pD953CA9B.dip.t-dialin.net [217.83.202.155]) h3RE2Dj11538 for ; Sun, 27 Apr 2003 16:02:14 +0200 Received: from hal.privat.lan (localhost [127.0.0.1]) by hal.privat.lan (8.12.8p1/8.12.8) with ESMTP id h3RE26xm012203 for ; Sun, 27 Apr 2003 16:02:07 +0200 (CEST) (envelope-from guiber@hal.privat.lan) Received: (from guiber@localhost) by hal.privat.lan (8.12.8p1/8.12.8/Submit) id h3RE24EB012202; Sun, 27 Apr 2003 16:02:04 +0200 (CEST) Message-Id: <200304271402.h3RE24EB012202@hal.privat.lan> Date: Sun, 27 Apr 2003 16:02:04 +0200 (CEST) From: Guido Berhoerster To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/51460: [PATCH] x11-wm/fvwm2-devel broken due to wrong dependency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Guido Berhoerster List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Apr 2003 14:10:14 -0000 >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: