From owner-svn-ports-all@FreeBSD.ORG Fri Dec 13 11:23:12 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 81408791; Fri, 13 Dec 2013 11:23:12 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6C7F01E71; Fri, 13 Dec 2013 11:23:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDBNC72095611; Fri, 13 Dec 2013 11:23:12 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBDBNCMO095610; Fri, 13 Dec 2013 11:23:12 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201312131123.rBDBNCMO095610@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 13 Dec 2013 11:23:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336333 - head/mail/gnubiff X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 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: Fri, 13 Dec 2013 11:23:12 -0000 Author: bapt Date: Fri Dec 13 11:23:11 2013 New Revision: 336333 URL: http://svnweb.freebsd.org/changeset/ports/336333 Log: convert WITHOUT_NLS to option With hat: portmgr Modified: head/mail/gnubiff/Makefile Modified: head/mail/gnubiff/Makefile ============================================================================== --- head/mail/gnubiff/Makefile Fri Dec 13 11:17:19 2013 (r336332) +++ head/mail/gnubiff/Makefile Fri Dec 13 11:23:11 2013 (r336333) @@ -10,6 +10,8 @@ MASTER_SITES= SF MAINTAINER= tdb@FreeBSD.org COMMENT= A mail notification program for Gnome +OPTIONS_DEFINE= NLS + LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt USE_GNOME= intlhack libglade2 esound @@ -26,11 +28,13 @@ CXXFLAGS+= "-Wno-long-long" MAN1= gnubiff.1 INFO= gnubiff +.include + .ifdef(WITH_GNUBIFF_PASSWORD) CONFIGURE_ARGS+= --with-password .endif -.ifndef(WITHOUT_NLS) +.if ${PORT_OPTIONS:MNLS} CONFIGURE_ARGS+= --enable-nls PLIST_SUB+= NLS="" USES+= gettext