From owner-freebsd-questions@FreeBSD.ORG Thu Jun 12 06:27:48 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C7408450 for ; Thu, 12 Jun 2014 06:27:48 +0000 (UTC) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8255A259A for ; Thu, 12 Jun 2014 06:27:48 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WuyU5-0000ct-Tv for freebsd-questions@freebsd.org; Thu, 12 Jun 2014 08:27:37 +0200 Received: from dynamic34-29.dynamic.dal.ca ([129.173.34.203]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 12 Jun 2014 08:27:37 +0200 Received: from jrm by dynamic34-29.dynamic.dal.ca with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 12 Jun 2014 08:27:37 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Joseph Mingrone Subject: Re: pkg/poudriere: unwanted dependencies Date: Thu, 12 Jun 2014 03:27:23 -0300 Lines: 27 Message-ID: <86sinak5h0.fsf@gly.ftfl.ca> References: <86wqd4fjvr.fsf@gly.ftfl.ca> <447g541dru.fsf@lowell-desk.lan> <86oayfffw8.fsf@gly.ftfl.ca> <53955A5B.9030704@calorieking.com> <86mwdmk1m8.fsf@gly.ftfl.ca> <539944C0.4040402@calorieking.com> Mime-Version: 1.0 Content-Type: text/plain X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: dynamic34-29.dynamic.dal.ca User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (berkeley-unix) Cancel-Lock: sha1:VSx8iHaVlKE5rwzkfGa8jpbxGaE= X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2014 06:27:48 -0000 Gregory Orange writes: > Hi Joseph, > > On 09/06/14 15:01, Joseph Mingrone wrote: >>> Would you mind elaborating a little on what you know about this? I've got Perl >>> >5.14 installed and specified in the poudriere build list, but poudriere builds >>> >5.16 as well. How can I control this? >> >> Try putting a DEFAULT_VERSIONS entry in >> /usr/local/etc/poudriere.d/make.conf. For example, try >> DEFAULT_VERSIONS=perl5=5.14. I also removed all other repositories >> aside from my poudriere repository and things began behaving as >> expected when I did a pkg install/upgrade. > > Ah, excellent. I hadn't updated ports for a while and hadn't seen anything about > DEFAULT_VERSIONS. Perl now builds correctly, thank you. I'm now having trouble > with databases/db* though, and I wonder where I might hunt for documentation on > these options? You can't specify an entry for databases/db* in DEFAULT_VERSIONS yet. Until then you can use something like WITH_BDB_VER=6+ in your make.conf. The way I usually figure these things out is by looking under Mk/ in the top level of the ports directory. You might also find MAKE.CONF(5) helpful. Joseph