From owner-freebsd-ports@FreeBSD.ORG Fri Apr 24 16:15:46 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 31E6330C for ; Fri, 24 Apr 2015 16:15:46 +0000 (UTC) Received: from mailrelay109.isp.belgacom.be (mailrelay109.isp.belgacom.be [195.238.20.136]) by mx1.freebsd.org (Postfix) with ESMTP id BF7C31045 for ; Fri, 24 Apr 2015 16:15:45 +0000 (UTC) X-Belgacom-Dynamic: yes X-Cloudmark-SP-Filtered: true X-Cloudmark-SP-Result: v=1.1 cv=hkFBDakPHWYIOok4y3pcivnmCJQbEK2MeX2RAJ8hs1E= c=1 sm=2 a=6I5d2MoRAAAA:8 a=E_R37FylIBx-qtKACfwA:9 a=CjuIK1q_8ugA:10 a=_PPDmbMtJM4A:10 a=1RV1ZaZ6xL8A:10 a=8L3P0twIbi4A:10 a=8eCkTgjBX3iaxNhg3QEA:9 a=pPEYBngLNtISS9_l:21 a=o4p_Np1EMBEOpQf4:21 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A2DKBgB3ajpV/1lWsVtbgwyBLs4xAoE9TQEBAQEBAYELhCEBAQRWMwsYCSUPKh4GExuIFAHMLgEBCAIBH4s3hQuELQEEk0WIRZVWI2CDFjwxgkQBAQE 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 18:14:36 +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 t3OGEX67008015 for ; Fri, 24 Apr 2015 18:14:35 +0200 (CEST) (envelope-from tijl@coosemans.org) Date: Fri, 24 Apr 2015 18:14:33 +0200 From: Tijl Coosemans To: Beeblebrox via freebsd-ports Subject: Re: Makefile syntax for disabled NLS still looks for gettext Message-ID: <20150424181433.6dbffc10@kalimero.tijl.coosemans.org> In-Reply-To: <20150424185002.3f42ddb3@rsbsd.rsb> References: <20150424113118.60cdd20e@rsbsd.rsb> <20150424165301.3d316bfc@rsbsd.rsb> <20150424180511.6995b3ea@rsbsd.rsb> <20150424185002.3f42ddb3@rsbsd.rsb> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/rCeYjWFehuG7Is+NLyuS4Gs" 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 16:15:46 -0000 --MP_/rCeYjWFehuG7Is+NLyuS4Gs Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline On Fri, 24 Apr 2015 18:50:02 +0300 Beeblebrox via freebsd-ports wrote: > Well, s**t, I spoke too soon. > Solution works on host, not in poudriere. Try the attached patch. --MP_/rCeYjWFehuG7Is+NLyuS4Gs Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=linphone.patch Index: net/linphone/Makefile =================================================================== --- net/linphone/Makefile (revision 384665) +++ net/linphone/Makefile (working copy) @@ -28,7 +28,7 @@ CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib INSTALLS_ICONS= yes INSTALL_TARGET= install-strip -USES= gmake libtool pathfix pkgconfig readline:port +USES= gettext-tools gmake libtool pathfix pkgconfig readline:port USE_GNOME= gtk20 intltool libxml2 USE_LDCONFIG= yes @@ -41,7 +41,7 @@ LDAP_LIB_DEPENDS= libsasl2.so:${PORTSDIR LDAP_USE= OPENLDAP=yes NLS_CONFIGURE_ENABLE= nls -NLS_USES= gettext +NLS_USES= gettext-runtime NOTIFY_CONFIGURE_ENABLE=notify NOTIFY_LIB_DEPENDS= libnotify.so:${PORTSDIR}/devel/libnotify --MP_/rCeYjWFehuG7Is+NLyuS4Gs--