From owner-svn-ports-head@FreeBSD.ORG Mon Dec 17 20:36:40 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BC392C9D; Mon, 17 Dec 2012 20:36:40 +0000 (UTC) (envelope-from marius@alchemy.franken.de) Received: from alchemy.franken.de (alchemy.franken.de [194.94.249.214]) by mx1.freebsd.org (Postfix) with ESMTP id 4344E8FC0A; Mon, 17 Dec 2012 20:36:39 +0000 (UTC) Received: from alchemy.franken.de (localhost [127.0.0.1]) by alchemy.franken.de (8.14.5/8.14.5/ALCHEMY.FRANKEN.DE) with ESMTP id qBHKaXDc063704; Mon, 17 Dec 2012 21:36:33 +0100 (CET) (envelope-from marius@alchemy.franken.de) Received: (from marius@localhost) by alchemy.franken.de (8.14.5/8.14.5/Submit) id qBHKaX6l063703; Mon, 17 Dec 2012 21:36:33 +0100 (CET) (envelope-from marius) Date: Mon, 17 Dec 2012 21:36:33 +0100 From: Marius Strobl To: Wesley Shields Subject: Re: svn commit: r309126 - head/audio/aumix Message-ID: <20121217203633.GA57454@alchemy.franken.de> References: <201212172002.qBHK2Bwf057818@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201212172002.qBHK2Bwf057818@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org 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: Mon, 17 Dec 2012 20:36:40 -0000 On Mon, Dec 17, 2012 at 08:02:11PM +0000, Wesley Shields wrote: > Author: wxs > Date: Mon Dec 17 20:02:10 2012 > New Revision: 309126 > URL: http://svnweb.freebsd.org/changeset/ports/309126 > > Log: > Convert to new options. > > PR: ports/173783 > Submitted by: Chris Petrik > Approved by: maintainer timeout > > Modified: > head/audio/aumix/Makefile (contents, props changed) > > Modified: head/audio/aumix/Makefile > ============================================================================== > --- head/audio/aumix/Makefile Mon Dec 17 20:00:53 2012 (r309125) > +++ head/audio/aumix/Makefile Mon Dec 17 20:02:10 2012 (r309126) > @@ -1,9 +1,5 @@ > -# New ports collection makefile for: aumix > -# Date created: 21 May 1999 > -# Whom: Chris Piazza > -# > +# Created by: Chris Piazza > # $FreeBSD$ > -# > > PORTNAME= aumix > PORTVERSION= 2.9.1 > @@ -34,11 +30,12 @@ PLIST_FILES= bin/aumix bin/mute bin/xaum > PLIST_FILES+= share/aumix/${ii} > .endfor > > -OPTIONS= NLS "Enable NLS support" on \ > - GTK2 "Enable GTK2 gui" off > +.include > > -.include > -.if defined(WITHOUT_NLS) > +OPTIONS_DEFINE= NLS GTK2 > +OPTIONS_DEFAULT= NLS > + > +.if ${PORT_OPTIONS:MNLS} > CONFIGURE_ARGS+=--disable-nls > .else > USE_GETTEXT= yes Uhm, doesn't that have the NLS bits inverted now? Marius