Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/mhwaveedit: mhwaveedit-1.4.15-r1.ebuild
Date: Wed, 26 Nov 2008 08:50:00
Message-Id: E1L5G5t-00061d-9R@stork.gentoo.org
1 ssuominen 08/11/26 08:49:57
2
3 Modified: mhwaveedit-1.4.15-r1.ebuild
4 Log:
5 re-arrange some ebuild variables to match the default arragment, add missing die messages.
6 (Portage version: 2.2_rc15/cvs/Linux 2.6.27-gentoo-r3 i686)
7
8 Revision Changes Path
9 1.2 media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild?r1=1.1&r2=1.2
14
15 Index: mhwaveedit-1.4.15-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- mhwaveedit-1.4.15-r1.ebuild 19 May 2008 19:54:40 -0000 1.1
22 +++ mhwaveedit-1.4.15-r1.ebuild 26 Nov 2008 08:49:57 -0000 1.2
23 @@ -1,18 +1,17 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild,v 1.1 2008/05/19 19:54:40 drac Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild,v 1.2 2008/11/26 08:49:57 ssuominen Exp $
28
29 inherit eutils
30
31 -IUSE="alsa arts esd jack ladspa libsamplerate nls oss sdl sndfile sox"
32 -
33 -DESCRIPTION="GTK2 Sound file editor (wav, and a few others.)"
34 -HOMEPAGE="https://gna.org/projects/mhwaveedit/"
35 -SRC_URI="http://download.gna.org/mhwaveedit/${P}.tar.bz2"
36 +DESCRIPTION="GTK+ Sound file editor (wav, and a few others.)"
37 +HOMEPAGE="https://gna.org/projects/mhwaveedit"
38 +SRC_URI="http://download.gna.org/${PN}/${P}.tar.bz2"
39
40 -SLOT="0"
41 LICENSE="GPL-2"
42 +SLOT="0"
43 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
44 +IUSE="alsa arts esd jack ladspa libsamplerate nls oss sdl sndfile sox"
45
46 RDEPEND=">=x11-libs/gtk+-2
47 sndfile? ( >=media-libs/libsndfile-1.0.10 )
48 @@ -28,21 +27,20 @@
49 dev-util/pkgconfig"
50
51 src_compile() {
52 - econf \
53 + econf --without-portaudio \
54 $(use_enable nls) \
55 $(use_with sndfile libsndfile) \
56 $(use_with libsamplerate) \
57 - --without-portaudio \
58 $(use_with sdl) \
59 $(use_with alsa alsalib) \
60 $(use_with oss) \
61 $(use_with jack) \
62 $(use_with esd esound) \
63 - $(use_with arts) || die "econf failed"
64 - emake || die "emake failed"
65 + $(use_with arts) || die "econf failed."
66 + emake || die "emake failed."
67 }
68
69 src_install() {
70 - emake DESTDIR="${D}" install || die
71 + emake DESTDIR="${D}" install || die "emake install failed."
72 dodoc AUTHORS BUGS ChangeLog HACKING NEWS README TODO
73 }