diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2008-11-26 08:49:57 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2008-11-26 08:49:57 +0000 |
commit | 118cf51a57cbe0e4c80e8a25faec7c90956661cc (patch) | |
tree | bf27a70b9e7ed1eec2411f2e4a94c0784973faac /media-sound/mhwaveedit | |
parent | old (diff) | |
download | gentoo-2-118cf51a57cbe0e4c80e8a25faec7c90956661cc.tar.gz gentoo-2-118cf51a57cbe0e4c80e8a25faec7c90956661cc.tar.bz2 gentoo-2-118cf51a57cbe0e4c80e8a25faec7c90956661cc.zip |
re-arrange some ebuild variables to match the default arragment, add missing die messages.
(Portage version: 2.2_rc15/cvs/Linux 2.6.27-gentoo-r3 i686)
Diffstat (limited to 'media-sound/mhwaveedit')
-rw-r--r-- | media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild b/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild index 97349097a998..fd7b147312e0 100644 --- a/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild +++ b/media-sound/mhwaveedit/mhwaveedit-1.4.15-r1.ebuild @@ -1,18 +1,17 @@ # Copyright 1999-2008 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.1 2008/05/19 19:54:40 drac Exp $ +# $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 $ inherit eutils -IUSE="alsa arts esd jack ladspa libsamplerate nls oss sdl sndfile sox" - -DESCRIPTION="GTK2 Sound file editor (wav, and a few others.)" -HOMEPAGE="https://gna.org/projects/mhwaveedit/" -SRC_URI="http://download.gna.org/mhwaveedit/${P}.tar.bz2" +DESCRIPTION="GTK+ Sound file editor (wav, and a few others.)" +HOMEPAGE="https://gna.org/projects/mhwaveedit" +SRC_URI="http://download.gna.org/${PN}/${P}.tar.bz2" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="alsa arts esd jack ladspa libsamplerate nls oss sdl sndfile sox" RDEPEND=">=x11-libs/gtk+-2 sndfile? ( >=media-libs/libsndfile-1.0.10 ) @@ -28,21 +27,20 @@ DEPEND="${RDEPEND} dev-util/pkgconfig" src_compile() { - econf \ + econf --without-portaudio \ $(use_enable nls) \ $(use_with sndfile libsndfile) \ $(use_with libsamplerate) \ - --without-portaudio \ $(use_with sdl) \ $(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 arts) || die "econf failed." + emake || die "emake failed." } src_install() { - emake DESTDIR="${D}" install || die + emake DESTDIR="${D}" install || die "emake install failed." dodoc AUTHORS BUGS ChangeLog HACKING NEWS README TODO } |