From owner-freebsd-ports@FreeBSD.ORG Fri Apr 24 09:10:51 2015 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E896E415 for ; Fri, 24 Apr 2015 09:10:51 +0000 (UTC) Received: from mailrelay102.isp.belgacom.be (mailrelay102.isp.belgacom.be [195.238.20.129]) by mx1.freebsd.org (Postfix) with ESMTP id 85C691CB0 for ; Fri, 24 Apr 2015 09:10:50 +0000 (UTC) X-Belgacom-Dynamic: yes X-Cloudmark-SP-Filtered: true X-Cloudmark-SP-Result: v=1.1 cv=+BsAzE94k0WpM8AtezFGaEXBVpw1lpSE4R7UN5Nfg4g= c=1 sm=2 a=kj9zAlcOel0A:10 a=6I5d2MoRAAAA:8 a=wH-wcsRGi0m8I4SCgg0A:9 a=CjuIK1q_8ugA:10 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A2ClBgDMBzpV/1lWsVtbgwyBIgzOCQQCAoE3TQEBAQEBAYELhCEBAQQ6HDMLGAklDyoeBhOILwHLYAEBCAIBH4s3hQuELQEEm36VTCNggSccgVM8MYJEAQEB Received: from 89.86-177-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.177.86.89]) by relay.skynet.be with ESMTP; 24 Apr 2015 11:09:41 +0200 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.9/8.14.9) with ESMTP id t3O99eCM001550 for ; Fri, 24 Apr 2015 11:09:40 +0200 (CEST) (envelope-from tijl@FreeBSD.org) Date: Fri, 24 Apr 2015 11:09:40 +0200 From: Tijl Coosemans To: Beeblebrox via freebsd-ports Subject: Re: Makefile syntax for disabled NLS still looks for gettext Message-ID: <20150424110940.36528e79@kalimero.tijl.coosemans.org> In-Reply-To: <20150424113118.60cdd20e@rsbsd.rsb> References: <20150424113118.60cdd20e@rsbsd.rsb> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Apr 2015 09:10:52 -0000 On Fri, 24 Apr 2015 11:31:18 +0300 Beeblebrox via freebsd-ports wrote: > I have found 2 ports that fail to build when "OPTIONS_FILE_UNSET+=NLS" > is used. The error is the usual "GNU gettext tools not found" problem. > > The Makefile of both ports have: > NLS_CONFIGURE_ENABLE= nls \ NLS_USES= gettext > This should fix the problem but does not. What does the syntax need to > be? I have seen examples like "NLS_USES= gettext-runtime", but that > modification did not correct the problem either. Gettext consists of developer tools and a runtime component. You can depend on each separately like this: USES=gettext-tools NLS_CONFIGURE_ENABLE=nls NLS_USES=gettext-runtime