From owner-freebsd-ports@FreeBSD.ORG Sat Mar 25 20:15:11 2006 Return-Path: X-Original-To: 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 02E8916A401 for ; Sat, 25 Mar 2006 20:15:10 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E93C43D55 for ; Sat, 25 Mar 2006 20:15:04 +0000 (GMT) (envelope-from infofarmer@gmail.com) Received: by zproxy.gmail.com with SMTP id v1so1147809nzb for ; Sat, 25 Mar 2006 12:15:01 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=U0MGafxiGeDTAQRPICBRdQT6gbt2pknvg2TlZE2BW3ODZfP9JukrnqgBcBAfCc/T9mw2l59njSrAo+ccPzIZE72dpR7dvN6domKc++vnBMKQAqdw5Y/Ebg06kHLQonsaIeXIQbXfrHEB7kjeEFj7oSADAOAtKg6aL6W69Tbpgp0= Received: by 10.36.119.4 with SMTP id r4mr2944147nzc; Sat, 25 Mar 2006 12:15:01 -0800 (PST) Received: by 10.37.22.74 with HTTP; Sat, 25 Mar 2006 12:15:01 -0800 (PST) Message-ID: Date: Sat, 25 Mar 2006 23:15:01 +0300 From: "Andrew Pantyukhin" To: koma2@lovepeers.org, "FreeBSD Ports" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Cc: Subject: portupgrade MAKE_ARGS inheritance bug 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: Sat, 25 Mar 2006 20:15:11 -0000 If MAKE_ARGS is set for a port and you try to portinstall it for example, then the same MAKE_ARGS are used for the ports installed as dependencies. In my case I have this in my pkgtools.conf: MAKE_ARGS =3D { 'mldonkey*' =3D> [ 'CONFIGURE_ARGS=3D"--disable-gnutella"', ], } When I tried to install mldonkey, portupgrade tried to install ocaml with the same CONFIGURE_ARGS. It failed. I had to install it separately. Thanks!