From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Nov 12 13:10:26 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 0EAED16A4FA for ; Wed, 12 Nov 2003 13:10:26 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 697E043FD7 for ; Wed, 12 Nov 2003 13:10:24 -0800 (PST) (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 hACLAOFY015276 for ; Wed, 12 Nov 2003 13:10:24 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id hACLAO0A015275; Wed, 12 Nov 2003 13:10:24 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 12 Nov 2003 13:10:24 -0800 (PST) Resent-Message-Id: <200311122110.hACLAO0A015275@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, pseniura@techie.com Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5728816A4CE for ; Wed, 12 Nov 2003 13:00:40 -0800 (PST) Received: from odot.okladot.state.ok.us (odot.okladot.state.ok.us [192.149.244.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEABB43FF2 for ; Wed, 12 Nov 2003 13:00:32 -0800 (PST) (envelope-from root@techpc04.okladot.state.ok.us) Received: from notes9c.okladot.state.ok.us (notes9a.okladot.state.ok.us [10.36.36.31])PAA31430 for ; Wed, 12 Nov 2003 15:00:39 -0600 Received: from techpc04.okladot.state.ok.us ([199.27.9.37]) by notes9c.okladot.state.ok.us (Lotus Domino Release 5.0.12) with ESMTP id 2003111215002605:119862 ; Wed, 12 Nov 2003 15:00:26 -0600 Received: by techpc04.okladot.state.ok.us (Postfix, from userid 0) id 89BDB5C7F; Wed, 12 Nov 2003 14:00:18 -0600 (CST) Message-Id: <20031112200018.89BDB5C7F@techpc04.okladot.state.ok.us> Date: Wed, 12 Nov 2003 14:00:18 -0600 (CST) From: pseniura@techie.com To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/59230: gstreamer-plugins Makefile depends on libshout which conflicts with previously-installed libshout2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: pseniura@techie.com List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Nov 2003 21:10:26 -0000 >Number: 59230 >Category: ports >Synopsis: gstreamer-plugins Makefile depends on libshout which conflicts with previously-installed libshout2 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 12 13:10:23 PST 2003 >Closed-Date: >Last-Modified: >Originator: pseniura@techie.com >Release: FreeBSD 5.1-CURRENT i386 >Organization: Okla.D.O.T. >Environment: System: FreeBSD techpc04.okladot.state.ok.us 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Fri Nov 7 00:12:31 CST 2003 root@techpc04.okladot.state.ok.us:/usr/obj/src/sys/IBM300PY i386 >Description: The x11/gnome2 meta-port is requiring gstreamer-plugins through a long chain of requisites. Before this, I had toinstall audio/libshout2 (v2.0) because of other ports needing it specifically. Gstreamer-plugins, tho, is calling for audio/libshout (v1.0.7), causing a CONFLICTS condition to be raised during portupgrade fresh install of x11/gnome2. The gstreamer-plugins' Makefile does a simple detection to see that libshout.a is installed, then the Makefile adds the 'wrong' version of libshout to the LIB_DEPENDS string. The Makefile also uses the environment variable WITH_LIBSHOUT (irregardless of libshout.a being installed) and if it is defined, the Makefile again adds the 'wrong' version of libshout to LIB_DEPENDS. And we never get to a point where the meta-port itself is installed. I use CTM (due to firewall issues here) and am up-to-date as far as this morning's buckets for src-cur and ports-cur. >How-To-Repeat: Install audio/libshout2 first, then install multimedia/gstreamer-plugins. >Fix: To work around this, I simply patched the Makefile for gstreamer-plugins to specify audio/libshout2 instead of audio/libshout: --- Makefile_orig Sun Nov 9 02:24:04 2003 +++ Makefile Mon Nov 10 16:02:32 2003 @@ -520,7 +520,7 @@ CONFIGURE_ARGS+= --disable-shout PLIST_SUB+= LIBSHOUT="@comment " .else -LIB_DEPENDS+= shout.2:${PORTSDIR}/audio/libshout +LIB_DEPENDS+= shout.3:${PORTSDIR}/audio/libshout2 PLIST_SUB+= LIBSHOUT="" .endif I have no idea whether gstreamer-plugins will function with libshout2 (since it'll take a while to get the whole gnome2 built and installed in order to test this). >Release-Note: >Audit-Trail: >Unformatted: