From owner-freebsd-ports@FreeBSD.ORG Tue Apr 15 12:43:03 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 625D51065672 for ; Tue, 15 Apr 2008 12:43:03 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.229]) by mx1.freebsd.org (Postfix) with ESMTP id 355E58FC13 for ; Tue, 15 Apr 2008 12:43:02 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so1031632rvf.43 for ; Tue, 15 Apr 2008 05:43:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=nt3h1MqEbOZE9fYLRJrPTKmbgXPYz1I1/qs6fPgy7qU=; b=IzGL28fuwF7LqGvqh1AkP/Rsvx/PDGuw3N/N6UBtIzxJNtfWAWxVs8WvuTQCv9KkVzgrHa8Pz6gMY/URkP2xO9qYpfpYjMqzQsUpazp/7zV8NQkns5SxYk1dAtKu0mMt8d6GEYR4detFTO5zEjvfoFgWqt0EfF0T4vdIHUrrKoE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=E1db4PxhF6qXejspNFpxmOAXDQmUvMSFPuhuUt2TPhh1xUs15B2CbCrzUv9Ni36wwjLuiiMfc3dZP8rfXXnorKsgX58LQ+f/zSdkQqACt/+7J2z+RMdd55Gebo0z6cYgCNA2S2tQlEANAS0Y5a+VntQrpA+8h/OdPidhI2ob29A= Received: by 10.141.170.10 with SMTP id x10mr4268492rvo.139.1208263382623; Tue, 15 Apr 2008 05:43:02 -0700 (PDT) Received: by 10.140.191.11 with HTTP; Tue, 15 Apr 2008 05:43:02 -0700 (PDT) Message-ID: <790a9fff0804150543l33843f0fpcf2885cc39aa4274@mail.gmail.com> Date: Tue, 15 Apr 2008 07:43:02 -0500 From: "Scot Hetzel" To: gerard@seibercom.net In-Reply-To: <20080414070627.W84665@scorpio.seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20080414070627.W84665@scorpio.seibercom.net> Cc: mich@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Building 'gvfs' 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: Tue, 15 Apr 2008 12:43:03 -0000 On Mon, Apr 14, 2008 at 6:12 AM, Gerard wrote: > FreeBSD-6.3 > > I have attempted to update to 'gvfs-0.2.3_2'. I have not modified the configuration file in any way. In fact, I even ran 'make rmconfig' to insure that it was not affecting the build. However, the update continually fails. 'gvfs' claims it wants 'cdio_paranoia.0' installed. > > I have 'libcdio-0.78.2_1' installed with the basic configuration file. I was forced to modify the configuration file, check 'PARANOIA', and rebuild the port in order to get 'gvfs' to build. > > This does not seem correct. I suppose that I could have also modified the 'gvfs' configuration file; however, neither should be required to do a basic port installation. I believe the 'gvfs' port should be modified. > > Am I overlooking something here? > By default sysutils/libcdio has PARANOIA enabled. Looks like you had installed sysutils/libcdio without PARANOIA enabled, and then tried to install devel/gvfs with CDDA enabled. Which required PARANOIA to be enabled in sysutils/libcdio. The ports system isn't smart enough to know PARANOIA needed to be enabled in sysutils/libcdio, inorder to build devel/gvfs with CDDA enabled. One possible solution is to add the following to devel/gvfs/Makefile: OPTION_DEPEND= devel/libcdio:WITH_PARANOIA and then have bsd.ports.mk check if WITH_PARANOIA is enabled, if not enabled give a warning to rebuild the devel/libcdio port with PARANOIA enabled. Scot