From owner-freebsd-ports@FreeBSD.ORG Mon Jul 3 09:17:03 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93C6816A403 for ; Mon, 3 Jul 2006 09:17:03 +0000 (UTC) (envelope-from hans@lambermont.dyndns.org) Received: from lambermont.dyndns.org (lambermont.dyndns.org [82.93.47.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B16D43D48 for ; Mon, 3 Jul 2006 09:17:03 +0000 (GMT) (envelope-from hans@lambermont.dyndns.org) Received: by lambermont.dyndns.org (Postfix, from userid 1001) id 3761A22DD93; Mon, 3 Jul 2006 11:17:02 +0200 (CEST) Date: Mon, 3 Jul 2006 11:17:02 +0200 To: freebsd-ports@freebsd.org Message-ID: <20060703091702.GA83125@leia.lambermont.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i From: hans@lambermont.dyndns.org (Hans Lambermont) Subject: Bison 1 and 2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Jul 2006 09:17:03 -0000 While upgrading vlc-0.8.4a_2 to vlc-0.8.5_2 I ran into : ===> bison-1.75_2,1 conflicts with installed package(s): bison-2.1_2 In /usr/ports/Mk/bsd.port.mk I see for bison : .if defined(USE_BISON) BUILD_DEPENDS+= bison:${PORTSDIR}/devel/bison .endif I changed this into: .if defined(USE_BISON) BUILD_DEPENDS+= bison:${PORTSDIR}/devel/bison2 .endif I'm aware that this can cause problem for those who depend on features/syntax/whatever which is only found in bison'1'. My vlc upgrade went fine with bison2. What is the port manager's plan with bison1/2 ? Should we introduce something like a 'USE_BISON_VERSION' (make.conf candidate) to extend 'USE_BISON' for ports that can use both versions and also split 'USE_BISON' into 'USE_BISON1' and 'USE_BISON2' for those who cannot ? regards, Hans Lambermont