Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/audacity: ChangeLog audacity-2.0.2.ebuild
Date: Fri, 24 Aug 2012 05:03:40
Message-Id: 20120824050331.11EE720537@flycatcher.gentoo.org
1 radhermit 12/08/24 05:03:31
2
3 Modified: ChangeLog
4 Added: audacity-2.0.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.177 media-sound/audacity/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.177&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.177&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/ChangeLog?r1=1.176&r2=1.177
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
20 retrieving revision 1.176
21 retrieving revision 1.177
22 diff -u -r1.176 -r1.177
23 --- ChangeLog 30 Jun 2012 04:07:44 -0000 1.176
24 +++ ChangeLog 24 Aug 2012 05:03:30 -0000 1.177
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-sound/audacity
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.176 2012/06/30 04:07:44 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.177 2012/08/24 05:03:30 radhermit Exp $
30 +
31 +*audacity-2.0.2 (24 Aug 2012)
32 +
33 + 24 Aug 2012; Tim Harder <radhermit@g.o> +audacity-2.0.2.ebuild:
34 + Version bump.
35
36 *audacity-2.0.1 (30 Jun 2012)
37
38
39
40
41 1.1 media-sound/audacity/audacity-2.0.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacity/audacity-2.0.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: audacity-2.0.2.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-2.0.2.ebuild,v 1.1 2012/08/24 05:03:30 radhermit Exp $
51
52 EAPI=4
53
54 inherit eutils wxwidgets autotools versionator
55
56 MY_PV=$(replace_version_separator 3 -)
57 MY_P="${PN}-src-${MY_PV}"
58 MY_T="${PN}-minsrc-${MY_PV}"
59 DESCRIPTION="Free crossplatform audio editor"
60 HOMEPAGE="http://audacity.sourceforge.net/"
61 SRC_URI="http://audacity.googlecode.com/files/${MY_T}.tar.bz2"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="alsa ffmpeg flac id3tag jack ladspa libsamplerate midi mp3 sbsms soundtouch twolame vamp vorbis"
67 RESTRICT="test"
68
69 COMMON_DEPEND="x11-libs/wxGTK:2.8[X]
70 >=app-arch/zip-2.3
71 >=media-libs/libsndfile-1.0.0
72 dev-libs/expat
73 libsamplerate? ( >=media-libs/libsamplerate-0.1.2 )
74 vorbis? ( >=media-libs/libvorbis-1.0 )
75 mp3? ( >=media-libs/libmad-0.14.2b )
76 flac? ( >=media-libs/flac-1.2.0[cxx] )
77 id3tag? ( media-libs/libid3tag )
78 sbsms? ( media-libs/libsbsms )
79 soundtouch? ( >=media-libs/libsoundtouch-1.3.1 )
80 vamp? ( >=media-libs/vamp-plugin-sdk-2.0 )
81 twolame? ( media-sound/twolame )
82 ffmpeg? ( virtual/ffmpeg )
83 alsa? ( media-libs/alsa-lib )
84 jack? ( >=media-sound/jack-audio-connection-kit-0.103.0 )"
85 # Crashes at startup here...
86 # lv2? ( >=media-libs/slv2-0.6.0 )
87 # Disabled upstream ATM
88 # ladspa? ( >=media-libs/liblrdf-0.4.0 )
89
90 RDEPEND="${COMMON_DEPEND}
91 mp3? ( >=media-sound/lame-3.70 )"
92 DEPEND="${COMMON_DEPEND}
93 virtual/pkgconfig"
94
95 REQUIRED_USE="soundtouch? ( midi )"
96
97 S=${WORKDIR}/${MY_P}
98
99 src_prepare() {
100 epatch "${FILESDIR}"/${PN}-1.3.13-automagic.patch
101
102 AT_M4DIR="${S}/m4" eautoreconf
103 }
104
105 src_configure() {
106 WX_GTK_VER="2.8"
107 need-wxwidgets unicode
108
109 # * always use system libraries if possible
110 # * options listed in the order that configure --help lists them
111 # * if libsamplerate not requested, use libresample instead.
112 econf \
113 --enable-unicode \
114 --enable-nyquist \
115 $(use_enable ladspa) \
116 --with-libsndfile=system \
117 --with-expat=system \
118 $(use_with libsamplerate) \
119 $(use_with !libsamplerate libresample) \
120 $(use_with vorbis libvorbis) \
121 $(use_with mp3 libmad) \
122 $(use_with flac libflac) \
123 $(use_with id3tag libid3tag) \
124 $(use_with sbsms) \
125 $(use_with soundtouch) \
126 $(use_with vamp libvamp) \
127 $(use_with twolame libtwolame) \
128 $(use_with ffmpeg) \
129 $(use_with midi) \
130 $(use_with alsa) \
131 $(use_with jack)
132 }
133
134 # $(use_with lv2 slv2) \
135 # $(use_with ladspa liblrdf) \
136
137 src_install() {
138 emake DESTDIR="${D}" install
139
140 # Remove bad doc install
141 rm -rf "${D}"/usr/share/doc
142
143 # Install our docs
144 dodoc README.txt
145 }