From owner-svn-ports-head@FreeBSD.ORG Mon Feb 16 19:16:37 2015 Return-Path: Delivered-To: svn-ports-head@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 7DEF0C61; Mon, 16 Feb 2015 19:16:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6906C1AE; Mon, 16 Feb 2015 19:16:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1GJGbxi092142; Mon, 16 Feb 2015 19:16:37 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1GJGbZL092141; Mon, 16 Feb 2015 19:16:37 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201502161916.t1GJGbZL092141@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 16 Feb 2015 19:16:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r379103 - head/math/libqalculate X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Feb 2015 19:16:37 -0000 Author: pi Date: Mon Feb 16 19:16:36 2015 New Revision: 379103 URL: https://svnweb.freebsd.org/changeset/ports/379103 QAT: https://qat.redports.org/buildarchive/r379103/ Log: math/libqalculate: fix build in poudriere if NLS is not selected PR: 195908, 195857 Submitted by: Kevin Zheng Approved by: jhale (maintainer timeout) Modified: head/math/libqalculate/Makefile Modified: head/math/libqalculate/Makefile ============================================================================== --- head/math/libqalculate/Makefile Mon Feb 16 18:52:41 2015 (r379102) +++ head/math/libqalculate/Makefile Mon Feb 16 19:16:36 2015 (r379103) @@ -23,10 +23,12 @@ INSTALL_TARGET= install-strip OPTIONS_DEFINE= NLS OPTIONS_SUB= yes -NLS_USES= gettext - .include +.if !${PORT_OPTIONS:MNLS} +USES+= gettext +.endif + post-patch: .if !${PORT_OPTIONS:MNLS} @${REINPLACE_CMD} -e '/^SUBDIRS =/s|po ||g' ${WRKSRC}/Makefile.in