public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: ChangeLog audacity-2.0.0.ebuild
@ 2012-03-16 21:10 Tim Harder (radhermit)
  0 siblings, 0 replies; 5+ messages in thread
From: Tim Harder (radhermit) @ 2012-03-16 21:10 UTC (permalink / raw
  To: gentoo-commits

radhermit    12/03/16 21:10:57

  Modified:             ChangeLog
  Added:                audacity-2.0.0.ebuild
  Log:
  Version bump (bug #408345).
  
  (Portage version: 2.2.0_alpha90/cvs/Linux x86_64)

Revision  Changes    Path
1.168                media-sound/audacity/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.168&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.168&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?r1=1.167&r2=1.168

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -r1.167 -r1.168
--- ChangeLog	11 Mar 2012 23:00:46 -0000	1.167
+++ ChangeLog	16 Mar 2012 21:10:57 -0000	1.168
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.167 2012/03/11 23:00:46 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.168 2012/03/16 21:10:57 radhermit Exp $
+
+*audacity-2.0.0 (16 Mar 2012)
+
+  16 Mar 2012; Tim Harder <radhermit@gentoo.org> +audacity-2.0.0.ebuild:
+  Version bump (bug #408345).
 
   11 Mar 2012; Tim Harder <radhermit@gentoo.org> -audacity-1.3.13.ebuild:
   Remove old.



1.1                  media-sound/audacity/audacity-2.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild?rev=1.1&content-type=text/plain

Index: audacity-2.0.0.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild,v 1.1 2012/03/16 21:10:57 radhermit Exp $

EAPI=4

inherit eutils wxwidgets autotools versionator

MY_PV=$(replace_version_separator 3 -)
MY_P="${PN}-src-${MY_PV}"
MY_T="${PN}-minsrc-${MY_PV}"
DESCRIPTION="Free crossplatform audio editor"
HOMEPAGE="http://audacity.sourceforge.net/"
SRC_URI="http://${PN}.googlecode.com/files/${MY_T}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="alsa ffmpeg flac id3tag jack ladspa libsamplerate midi mp3 soundtouch twolame vamp vorbis"
RESTRICT="test"

COMMON_DEPEND="x11-libs/wxGTK:2.8[X]
	>=app-arch/zip-2.3
	>=media-libs/libsndfile-1.0.0
	dev-libs/expat
	libsamplerate? ( >=media-libs/libsamplerate-0.1.2 )
	vorbis? ( >=media-libs/libvorbis-1.0 )
	mp3? ( >=media-libs/libmad-0.14.2b )
	flac? ( >=media-libs/flac-1.2.0[cxx] )
	id3tag? ( media-libs/libid3tag )
	soundtouch? ( >=media-libs/libsoundtouch-1.3.1 )
	vamp? ( >=media-libs/vamp-plugin-sdk-2.0 )
	twolame? ( media-sound/twolame )
	ffmpeg? ( virtual/ffmpeg )
	alsa? ( media-libs/alsa-lib )
	jack? ( >=media-sound/jack-audio-connection-kit-0.103.0 )"
# Crashes at  startup here...
#	lv2? ( >=media-libs/slv2-0.6.0 )
# Disabled upstream ATM
#  ladspa? ( >=media-libs/liblrdf-0.4.0 )

RDEPEND="${COMMON_DEPEND}
	mp3? ( >=media-sound/lame-3.70 )"
DEPEND="${COMMON_DEPEND}
	dev-util/pkgconfig"

REQUIRED_USE="soundtouch? ( midi )"

S=${WORKDIR}/${MY_P}

src_prepare() {
	epatch "${FILESDIR}"/${PN}-1.3.13-automagic.patch
	epatch "${FILESDIR}"/${PN}-1.3.14-typecast.patch
	AT_M4DIR="${S}/m4" eautoreconf
}

src_configure() {
	WX_GTK_VER="2.8"
	need-wxwidgets unicode

	# * always use system libraries if possible
	# * options listed in the order that configure --help lists them
	# * if libsamplerate not requested, use libresample instead.
	econf \
		--enable-unicode \
		--enable-nyquist \
		$(use_enable ladspa) \
		--with-libsndfile=system \
		--with-expat=system \
		$(use_with libsamplerate) \
		$(use_with !libsamplerate libresample) \
		$(use_with vorbis libvorbis) \
		$(use_with mp3 libmad) \
		$(use_with flac libflac) \
		$(use_with id3tag libid3tag) \
		$(use_with soundtouch) \
		$(use_with vamp libvamp) \
		$(use_with twolame libtwolame) \
		$(use_with ffmpeg) \
		$(use_with midi) \
		$(use_with alsa) \
		$(use_with jack)
}

# $(use_with lv2 slv2) \
# $(use_with ladspa liblrdf) \

src_install() {
	emake DESTDIR="${D}" install

	# Remove bad doc install
	rm -rf "${D}"/usr/share/doc

	# Install our docs
	dodoc README.txt
}






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: ChangeLog audacity-2.0.0.ebuild
@ 2012-04-18 17:53 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-04-18 17:53 UTC (permalink / raw
  To: gentoo-commits

ago         12/04/18 17:53:53

  Modified:             ChangeLog audacity-2.0.0.ebuild
  Log:
  Stable for amd64, wrt bug #412411
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.169                media-sound/audacity/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.169&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.169&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?r1=1.168&r2=1.169

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -r1.168 -r1.169
--- ChangeLog	16 Mar 2012 21:10:57 -0000	1.168
+++ ChangeLog	18 Apr 2012 17:53:53 -0000	1.169
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.168 2012/03/16 21:10:57 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.169 2012/04/18 17:53:53 ago Exp $
+
+  18 Apr 2012; Agostino Sarubbo <ago@gentoo.org> audacity-2.0.0.ebuild:
+  Stable for amd64, wrt bug #412411
 
 *audacity-2.0.0 (16 Mar 2012)
 



1.2                  media-sound/audacity/audacity-2.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild?r1=1.1&r2=1.2

Index: audacity-2.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- audacity-2.0.0.ebuild	16 Mar 2012 21:10:57 -0000	1.1
+++ audacity-2.0.0.ebuild	18 Apr 2012 17:53:53 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild,v 1.1 2012/03/16 21:10:57 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild,v 1.2 2012/04/18 17:53:53 ago Exp $
 
 EAPI=4
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 IUSE="alsa ffmpeg flac id3tag jack ladspa libsamplerate midi mp3 soundtouch twolame vamp vorbis"
 RESTRICT="test"
 






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: ChangeLog audacity-2.0.0.ebuild
@ 2012-05-08 16:02 Brent Baude (ranger)
  0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2012-05-08 16:02 UTC (permalink / raw
  To: gentoo-commits

ranger      12/05/08 16:02:42

  Modified:             ChangeLog audacity-2.0.0.ebuild
  Log:
  Marking audacity-2.0.0 ppc64 for bug 412411
  
  (Portage version: 2.1.10.49/cvs/Linux ppc64)

Revision  Changes    Path
1.172                media-sound/audacity/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.172&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.172&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?r1=1.171&r2=1.172

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.171
retrieving revision 1.172
diff -u -r1.171 -r1.172
--- ChangeLog	5 May 2012 08:11:07 -0000	1.171
+++ ChangeLog	8 May 2012 16:02:42 -0000	1.172
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.171 2012/05/05 08:11:07 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.172 2012/05/08 16:02:42 ranger Exp $
+
+  08 May 2012; Brent Baude <ranger@gentoo.org> audacity-2.0.0.ebuild:
+  Marking audacity-2.0.0 ppc64 for bug 412411
 
   05 May 2012; Michał Górny <mgorny@gentoo.org> audacity-1.3.14.ebuild,
   audacity-2.0.0.ebuild:



1.5                  media-sound/audacity/audacity-2.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild?r1=1.4&r2=1.5

Index: audacity-2.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- audacity-2.0.0.ebuild	5 May 2012 08:11:07 -0000	1.4
+++ audacity-2.0.0.ebuild	8 May 2012 16:02:42 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild,v 1.4 2012/05/05 08:11:07 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild,v 1.5 2012/05/08 16:02:42 ranger Exp $
 
 EAPI=4
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~ppc ppc64 x86"
 IUSE="alsa ffmpeg flac id3tag jack ladspa libsamplerate midi mp3 soundtouch twolame vamp vorbis"
 RESTRICT="test"
 






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: ChangeLog audacity-2.0.0.ebuild
@ 2012-05-29 19:51 Brent Baude (ranger)
  0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2012-05-29 19:51 UTC (permalink / raw
  To: gentoo-commits

ranger      12/05/29 19:51:57

  Modified:             ChangeLog audacity-2.0.0.ebuild
  Log:
  Marking audacity-2.0.0 ppc for bug 412411
  
  (Portage version: 2.1.10.49/cvs/Linux ppc64)

Revision  Changes    Path
1.173                media-sound/audacity/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.173&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.173&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?r1=1.172&r2=1.173

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -r1.172 -r1.173
--- ChangeLog	8 May 2012 16:02:42 -0000	1.172
+++ ChangeLog	29 May 2012 19:51:56 -0000	1.173
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.172 2012/05/08 16:02:42 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.173 2012/05/29 19:51:56 ranger Exp $
+
+  29 May 2012; Brent Baude <ranger@gentoo.org> audacity-2.0.0.ebuild:
+  Marking audacity-2.0.0 ppc for bug 412411
 
   08 May 2012; Brent Baude <ranger@gentoo.org> audacity-2.0.0.ebuild:
   Marking audacity-2.0.0 ppc64 for bug 412411



1.6                  media-sound/audacity/audacity-2.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild?r1=1.5&r2=1.6

Index: audacity-2.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- audacity-2.0.0.ebuild	8 May 2012 16:02:42 -0000	1.5
+++ audacity-2.0.0.ebuild	29 May 2012 19:51:56 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild,v 1.5 2012/05/08 16:02:42 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild,v 1.6 2012/05/29 19:51:56 ranger Exp $
 
 EAPI=4
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="alsa ffmpeg flac id3tag jack ladspa libsamplerate midi mp3 soundtouch twolame vamp vorbis"
 RESTRICT="test"
 






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: ChangeLog audacity-2.0.0.ebuild
@ 2012-06-03 14:01 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 5+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-06-03 14:01 UTC (permalink / raw
  To: gentoo-commits

blueness    12/06/03 14:01:04

  Modified:             ChangeLog audacity-2.0.0.ebuild
  Log:
  Keyword ~mips
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.175                media-sound/audacity/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.175&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.175&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?r1=1.174&r2=1.175

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- ChangeLog	30 May 2012 11:58:57 -0000	1.174
+++ ChangeLog	3 Jun 2012 14:01:04 -0000	1.175
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.174 2012/05/30 11:58:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.175 2012/06/03 14:01:04 blueness Exp $
+
+  03 Jun 2012; Anthony G. Basile <blueness@gentoo.org> audacity-2.0.0.ebuild:
+  Keyword ~mips
 
   30 May 2012; Agostino Sarubbo <ago@gentoo.org> -audacity-1.3.14.ebuild:
   Remove old



1.7                  media-sound/audacity/audacity-2.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild?r1=1.6&r2=1.7

Index: audacity-2.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- audacity-2.0.0.ebuild	29 May 2012 19:51:56 -0000	1.6
+++ audacity-2.0.0.ebuild	3 Jun 2012 14:01:04 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild,v 1.6 2012/05/29 19:51:56 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-2.0.0.ebuild,v 1.7 2012/06/03 14:01:04 blueness Exp $
 
 EAPI=4
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
+KEYWORDS="amd64 ~mips ppc ppc64 x86"
 IUSE="alsa ffmpeg flac id3tag jack ladspa libsamplerate midi mp3 soundtouch twolame vamp vorbis"
 RESTRICT="test"
 






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-06-03 14:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-03 14:01 [gentoo-commits] gentoo-x86 commit in media-sound/audacity: ChangeLog audacity-2.0.0.ebuild Anthony G. Basile (blueness)
  -- strict thread matches above, loose matches on Subject: below --
2012-05-29 19:51 Brent Baude (ranger)
2012-05-08 16:02 Brent Baude (ranger)
2012-04-18 17:53 Agostino Sarubbo (ago)
2012-03-16 21:10 Tim Harder (radhermit)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox