From owner-svn-ports-all@FreeBSD.ORG Sat Oct 26 10:04:21 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 ESMTP id 35590D50; Sat, 26 Oct 2013 10:04:21 +0000 (UTC) (envelope-from tijl@freebsd.org) Received: from mailrelay002.isp.belgacom.be (mailrelay002.isp.belgacom.be [195.238.6.175]) by mx1.freebsd.org (Postfix) with ESMTP id 539A42425; Sat, 26 Oct 2013 10:04:19 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AlcGACaTa1Jbs4WZ/2dsb2JhbABZgwc4SL5agR0XdIIlAQEFOhwjEAsUBAklDxIYHgYTh3UDEwEIrlANiWuMZYI9MweELAOWH4FqgTCLIYU3gyg6 Received: from 153.133-179-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.179.133.153]) by relay.skynet.be with ESMTP; 26 Oct 2013 12:04:05 +0200 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.7/8.14.7) with ESMTP id r9QA446p001787; Sat, 26 Oct 2013 12:04:05 +0200 (CEST) (envelope-from tijl@FreeBSD.org) Date: Sat, 26 Oct 2013 12:04:04 +0200 From: Tijl Coosemans To: Danilo Egea Gondolfo Subject: Re: svn commit: r331611 - head/audio/audacity Message-ID: <20131026120404.269f0385@kalimero.tijl.coosemans.org> In-Reply-To: <201310251642.r9PGgQ12040085@svn.freebsd.org> References: <201310251642.r9PGgQ12040085@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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.14 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: Sat, 26 Oct 2013 10:04:21 -0000 On Fri, 25 Oct 2013 16:42:26 +0000 (UTC) Danilo Egea Gondolfo wrote: > Author: danilo > Date: Fri Oct 25 16:42:26 2013 > New Revision: 331611 > URL: http://svnweb.freebsd.org/changeset/ports/331611 > > Log: > - Update from 2.0.4 to 2.0.5 > - Add debug option > - Force dependency on jack > - Fix detection of SSE > - Make soxr default sample rate library and allow only 1 to be chosen > - Add midi support > - Add soundtouch support > - Remove taglib > - Remove extra patches > > PR: ports/183195 > Submitted by: Jack Low (maintainer) > > Modified: > head/audio/audacity/Makefile > head/audio/audacity/distinfo > > Modified: head/audio/audacity/Makefile > ============================================================================== > --- head/audio/audacity/Makefile Fri Oct 25 16:37:57 2013 (r331610) > +++ head/audio/audacity/Makefile Fri Oct 25 16:42:26 2013 (r331611) > @@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= audacity > -PORTVERSION= 2.0.4 > +PORTVERSION= 2.0.5 > CATEGORIES= audio > MASTER_SITES= GOOGLE_CODE \ > SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} > @@ -13,13 +13,11 @@ COMMENT= GUI editor for digital audio wa > > LICENSE= GPLv2 > > -LIB_DEPENDS= libsndfile.so:${PORTSDIR}/audio/libsndfile > - > WRKSRC= ${WRKDIR}/${PORTNAME}-src-${PORTVERSION} > > USE_AUTOTOOLS= aclocal autoconf > GNU_CONFIGURE= yes > -USES= gmake gettext pkgconfig > +USES= desktop-file-utils gmake gettext pkgconfig shared-mime-info > USE_XZ= yes > USE_WX= 2.8 > WX_UNICODE= yes > @@ -27,17 +25,25 @@ WX_COMPS= wx > INSTALLS_ICONS= yes > PORTDOCS= README.txt > > -OPTIONS_DEFINE= DOCS FFMPEG FLAC ID3TAG JACK LADSPA MAD NYQUIST PORTMIXER \ > - SAMPLERATE SBSMS SOXR SSE TAGLIB TWOLAME VAMP VORBIS > -OPTIONS_DEFAULT= FFMPEG FLAC ID3TAG JACK LADSPA MAD NYQUIST \ > - PORTMIXER SAMPLERATE SBSMS SOXR SSE TAGLIB \ > - TWOLAME VAMP VORBIS > - > +OPTIONS_DEFINE= DEBUG DOCS FFMPEG FLAC ID3TAG LADSPA LAME MAD MIDI NYQUIST \ > + PORTMIXER SBSMS SOUNDTOUCH TWOLAME VAMP VORBIS > +OPTIONS_RADIO= SAMPLERATED > +OPTIONS_RADIO_SAMPLERATED= RESAMPLE SAMPLERATE SOXR > +OPTIONS_DEFAULT= FFMPEG FLAC ID3TAG LADSPA LAME MAD MIDI NYQUIST \ > + PORTMIXER SBSMS SOUNDTOUCH SOXR TWOLAME VAMP VORBIS You might want to remove LAME from OPTIONS_DEFAULT, because lame is a restricted package so there won't be an audacity package either.