From owner-svn-ports-all@FreeBSD.ORG Mon Feb 16 20:12:48 2015 Return-Path: Delivered-To: svn-ports-all@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 6946D9D9; Mon, 16 Feb 2015 20:12:48 +0000 (UTC) Received: from mail-yh0-x22a.google.com (mail-yh0-x22a.google.com [IPv6:2607:f8b0:4002:c01::22a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 22205A79; Mon, 16 Feb 2015 20:12:48 +0000 (UTC) Received: by mail-yh0-f42.google.com with SMTP id i57so12274122yha.1; Mon, 16 Feb 2015 12:12:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=3pGeTxJB1SRe99UlAV5YNwi8m1jy5vkMLKisHJg8gFc=; b=tdZcEjekGNp9hMx7sNMTdKnPycx7V3Oab/DgxY/ZT09/qQCFGiQvxCb3WNi1yKwJAl DB/HCbWqTKHcyXj9KDBQBEauImc/bmEtzEU9uOAf3kppitUtam6kFWo3XwRl6V5KcUCt jKsy1dXinSBQNp5W96PtGCYTpZHX6kzdFUX4w4PIPB6oOQVlILLNcUKJHsdJfTAY541S VxbCopp0d8cxTSGdqJzq+tXE6HyM3J2AnBrFFIW6nj0PSFvrQagj3BtPE7EaHnVvxrar KAqangLR4VG85Lrth/vGcADG2D9cZT0nBP3MmZOSr3YhL8efCQSWoVnRo/rroOM7aTJ+ IvVw== MIME-Version: 1.0 X-Received: by 10.170.111.76 with SMTP id d73mr60402ykb.57.1424117567193; Mon, 16 Feb 2015 12:12:47 -0800 (PST) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.170.142.198 with HTTP; Mon, 16 Feb 2015 12:12:47 -0800 (PST) In-Reply-To: <201502161916.t1GJGbZL092141@svn.freebsd.org> References: <201502161916.t1GJGbZL092141@svn.freebsd.org> Date: Mon, 16 Feb 2015 21:12:47 +0100 X-Google-Sender-Auth: ehRGlUcUYkJIBqbf91rTTooOqho Message-ID: Subject: Re: svn commit: r379103 - head/math/libqalculate From: Antoine Brodin To: Kurt Jaeger Content-Type: text/plain; charset=UTF-8 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Feb 2015 20:12:48 -0000 On Mon, Feb 16, 2015 at 8:16 PM, Kurt Jaeger wrote: > 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 Now math/libqalculate is broken with default options. Antoine > > 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 >