From owner-svn-ports-head@FreeBSD.ORG Thu May 9 08:50:01 2013 Return-Path: Delivered-To: svn-ports-head@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 F2AAAE07; Thu, 9 May 2013 08:50:00 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id E6139977; Thu, 9 May 2013 08:50:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r498o0RN080290; Thu, 9 May 2013 08:50:00 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r498o0v7080289; Thu, 9 May 2013 08:50:00 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201305090850.r498o0v7080289@svn.freebsd.org> From: Emanuel Haupt Date: Thu, 9 May 2013 08:50:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r317725 - head/misc/pinfo 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.14 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: Thu, 09 May 2013 08:50:01 -0000 Author: ehaupt Date: Thu May 9 08:50:00 2013 New Revision: 317725 URL: http://svnweb.freebsd.org/changeset/ports/317725 Log: Fix gettext logic. Gettext is needed in pre-configure. Submitted by: ak, John Marino (via irc) Modified: head/misc/pinfo/Makefile Modified: head/misc/pinfo/Makefile ============================================================================== --- head/misc/pinfo/Makefile Thu May 9 08:46:53 2013 (r317724) +++ head/misc/pinfo/Makefile Thu May 9 08:50:00 2013 (r317725) @@ -13,10 +13,9 @@ LICENSE= GPLv2 OPTIONS_DEFINE= READLINE OPTIONS_DEFAULT=READLINE -READLINE_DESC= Enable readline support USE_BZIP2= yes -USES= gettext ncurses +USES= ncurses gettext USE_AUTOTOOLS= libtoolize aclocal autoheader automake autoconf LIBTOOLIZE_ARGS=--force ACLOCAL_ARGS= -I macros @@ -40,16 +39,14 @@ PLIST_FILES+= %%NLS%%share/locale/${lang .include .if ${PORT_OPTIONS:MNLS} -USES+= gettext PLIST_SUB+= NLS="" .else CONFIGURE_ARGS+= --disable-nls PLIST_SUB+= NLS="@comment " .endif - .if ${PORT_OPTIONS:MREADLINE} -USES= readline +USES+= readline .else CONFIGURE_ARGS+=--without-readline .endif