summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2009-05-21 14:32:26 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2009-05-21 14:32:26 +0000
commitca063af555c0b5c87bb02bcc884089f83b3d5034 (patch)
tree91fafa6b51830c57628bc4d187c6082258ec7a4f /media-sound/mhwaveedit
parentRemove arts support wrt #270575. (diff)
downloadgentoo-2-ca063af555c0b5c87bb02bcc884089f83b3d5034.tar.gz
gentoo-2-ca063af555c0b5c87bb02bcc884089f83b3d5034.tar.bz2
gentoo-2-ca063af555c0b5c87bb02bcc884089f83b3d5034.zip
Remove arts support wrt #270575.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/mhwaveedit')
-rw-r--r--media-sound/mhwaveedit/ChangeLog8
-rw-r--r--media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild28
2 files changed, 20 insertions, 16 deletions
diff --git a/media-sound/mhwaveedit/ChangeLog b/media-sound/mhwaveedit/ChangeLog
index 90e7af3c326c..e16624153635 100644
--- a/media-sound/mhwaveedit/ChangeLog
+++ b/media-sound/mhwaveedit/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/mhwaveedit
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mhwaveedit/ChangeLog,v 1.37 2008/11/29 13:08:44 coldwind Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mhwaveedit/ChangeLog,v 1.38 2009/05/21 14:32:26 ssuominen Exp $
+
+ 21 May 2009; Samuli Suominen <ssuominen@gentoo.org>
+ mhwaveedit-1.4.15-r1.ebuild:
+ Remove arts support wrt #270575.
29 Nov 2008; Santiago M. Mola <coldwind@gentoo.org>
mhwaveedit-1.4.15-r1.ebuild:
diff --git a/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild b/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild
index eeeb0c571ea7..38913b4798dd 100644
--- a/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild
+++ b/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild,v 1.4 2008/11/29 13:08:44 coldwind Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild,v 1.5 2009/05/21 14:32:26 ssuominen Exp $
+EAPI=2
inherit eutils
DESCRIPTION="GTK+ Sound file editor (wav, and a few others.)"
@@ -11,23 +12,24 @@ SRC_URI="http://download.gna.org/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc sparc x86"
-IUSE="alsa arts esd jack ladspa libsamplerate nls oss sdl sndfile sox"
+IUSE="alsa esd jack ladspa libsamplerate nls oss sdl sndfile sox"
-RDEPEND=">=x11-libs/gtk+-2
+RDEPEND=">=x11-libs/gtk+-2:2
sndfile? ( >=media-libs/libsndfile-1.0.10 )
sdl? ( >=media-libs/libsdl-1.2.3 )
alsa? ( media-libs/alsa-lib )
- jack? ( >=media-sound/jack-audio-connection-kit-0.98.0 )
- esd? ( >=media-sound/esound-0.2.0 )
+ jack? ( >=media-sound/jack-audio-connection-kit-0.98 )
+ esd? ( >=media-sound/esound-0.2 )
libsamplerate? ( media-libs/libsamplerate )
ladspa? ( media-libs/ladspa-sdk )
- sox? ( media-sound/sox )
- arts? ( >=kde-base/arts-3.4.1 )"
+ sox? ( media-sound/sox )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
-src_compile() {
- econf --without-portaudio \
+src_configure() {
+ econf \
+ --without-arts \
+ --without-portaudio \
$(use_enable nls) \
$(use_with sndfile libsndfile) \
$(use_with libsamplerate) \
@@ -35,12 +37,10 @@ src_compile() {
$(use_with alsa alsalib) \
$(use_with oss) \
$(use_with jack) \
- $(use_with esd esound) \
- $(use_with arts) || die "econf failed."
- emake || die "emake failed."
+ $(use_with esd esound)
}
src_install() {
- emake DESTDIR="${D}" install || die "emake install failed."
+ emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS BUGS ChangeLog HACKING NEWS README TODO
}