diff options
author | 2012-07-25 22:28:45 +0000 | |
---|---|---|
committer | 2012-07-25 22:28:45 +0000 | |
commit | e9e2b7c3d01d030abfb70497544b8bba865f1524 (patch) | |
tree | 64d63e4c083ab930fe9aa807a38333707e0e3ff4 /media-sound | |
parent | Drop ~x86-fbsd keyword due to collision between original BSD indent and its G... (diff) | |
download | gentoo-2-e9e2b7c3d01d030abfb70497544b8bba865f1524.tar.gz gentoo-2-e9e2b7c3d01d030abfb70497544b8bba865f1524.tar.bz2 gentoo-2-e9e2b7c3d01d030abfb70497544b8bba865f1524.zip |
Version bump. Update to EAPI 4.
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/mhwaveedit/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/mhwaveedit/mhwaveedit-1.4.22.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/media-sound/mhwaveedit/ChangeLog b/media-sound/mhwaveedit/ChangeLog index 6eee42d697cf..6883a7d2952a 100644 --- a/media-sound/mhwaveedit/ChangeLog +++ b/media-sound/mhwaveedit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/mhwaveedit # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mhwaveedit/ChangeLog,v 1.51 2012/05/05 08:38:38 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mhwaveedit/ChangeLog,v 1.52 2012/07/25 22:28:45 radhermit Exp $ + +*mhwaveedit-1.4.22 (25 Jul 2012) + + 25 Jul 2012; Tim Harder <radhermit@gentoo.org> +mhwaveedit-1.4.22.ebuild: + Version bump. Update to EAPI 4. 05 May 2012; Michał Górny <mgorny@gentoo.org> mhwaveedit-1.4.21.ebuild: dev-util/pkgconfig -> virtual/pkgconfig diff --git a/media-sound/mhwaveedit/mhwaveedit-1.4.22.ebuild b/media-sound/mhwaveedit/mhwaveedit-1.4.22.ebuild new file mode 100644 index 000000000000..c07c57d1d44e --- /dev/null +++ b/media-sound/mhwaveedit/mhwaveedit-1.4.22.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/mhwaveedit/mhwaveedit-1.4.22.ebuild,v 1.1 2012/07/25 22:28:44 radhermit Exp $ + +EAPI=4 + +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" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="alsa jack ladspa libsamplerate nls oss pulseaudio sdl sndfile sox" + +RDEPEND="x11-libs/gtk+:2 + x11-libs/pango + 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 ) + libsamplerate? ( media-libs/libsamplerate ) + ladspa? ( media-libs/ladspa-sdk ) + pulseaudio? ( >=media-sound/pulseaudio-0.9.10 ) + sox? ( media-sound/sox )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README TODO" + +src_configure() { + econf \ + --without-arts \ + --without-portaudio \ + $(use_enable nls) \ + $(use_with sndfile libsndfile) \ + $(use_with libsamplerate) \ + $(use_with sdl) \ + $(use_with alsa alsalib) \ + $(use_with oss) \ + $(use_with jack) \ + $(use_with pulseaudio pulse) \ + --without-esound +} |