From owner-freebsd-current@FreeBSD.ORG Sat Jan 12 00:41:38 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D2BC25E1; Sat, 12 Jan 2013 00:41:38 +0000 (UTC) (envelope-from george+freebsd@m5p.com) Received: from mailhost.m5p.com (ip-2-1-0-2.r03.asbnva02.us.ce.gin.ntt.net [IPv6:2001:418:0:5000::16]) by mx1.freebsd.org (Postfix) with ESMTP id 8DB92C01; Sat, 12 Jan 2013 00:41:38 +0000 (UTC) Received: from wonderland.m5p.com (localhost [IPv6:::1]) by mailhost.m5p.com (8.14.5/8.14.5) with ESMTP id r0C0fVwV093201; Fri, 11 Jan 2013 19:41:37 -0500 (EST) (envelope-from george+freebsd@m5p.com) Message-ID: <50F0B13B.1050708@m5p.com> Date: Fri, 11 Jan 2013 19:41:31 -0500 From: George Mitchell User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20121125 Thunderbird/15.0.1 MIME-Version: 1.0 To: Gleb Kurtsou Subject: Re: Circular port dependency References: <50EF6935.3070000@m5p.com> <20130111082226.GA2969@reks> In-Reply-To: <20130111082226.GA2969@reks> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.73 on 10.100.0.3 X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (mailhost.m5p.com [IPv6:::1]); Fri, 11 Jan 2013 19:41:37 -0500 (EST) Cc: freebsd-current@freebsd.org, freebsd-ports@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Jan 2013 00:41:38 -0000 On 01/11/13 03:22, Gleb Kurtsou wrote: > On (10/01/2013 20:21), George Mitchell wrote: >> I grabbed the ports tree as of 308518, the RELEASE_9_1_0 tag. >> devel/libtool won't build, because it requires autom4te during the >> configure phase. So I put "BUILD_DEPENDS= autom4te:devel/autoconf" >> in the Makefile. But autoconf depends on gmake, which depends on >> gettext, which depends on libiconv, which depends on libtool. >> What to do? > > Build devel/gmake defining WITHOUT_NLS: > # cd /usr/ports/devel/gmake && make -DWITHOUT_NLS all install > > Why would anybody want NLS support in make in a first place? > >> >> I'm running on a CURRENT build on my Raspberry Pi. >> -- George Mitchell >> _______________________________________________ >> freebsd-current@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-current >> To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" It turns out the circular dependency is the side effect of the FreeBSD 10 autotools fix. Upon discovering that acinclude.m4 has been modified, the port decides it needs to run autom4te. I worked around the problem with "make -DWITHOUT_FBSD10_FIX", with no apparent ill effects. Perhaps the devel/libtool Makefile should always define WITHOUT_FBSD10_FIX. -- George Mitchell