diff options
author | Alexis Ballier <aballier@gentoo.org> | 2015-08-29 16:25:17 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2015-08-29 16:25:25 +0200 |
commit | d95243f5a8c8667f575b6dc92dd2d24baaa47a36 (patch) | |
tree | 20b0803d16c3eb6fc4d8b91f4cbc19d379bf69e1 /media-sound/potamus/potamus-16.ebuild | |
parent | sci-mathematics/maxima: cleaning old version (diff) | |
download | gentoo-d95243f5a8c8667f575b6dc92dd2d24baaa47a36.tar.gz gentoo-d95243f5a8c8667f575b6dc92dd2d24baaa47a36.tar.bz2 gentoo-d95243f5a8c8667f575b6dc92dd2d24baaa47a36.zip |
media-sound/potamus: bump to version 16.
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'media-sound/potamus/potamus-16.ebuild')
-rw-r--r-- | media-sound/potamus/potamus-16.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/media-sound/potamus/potamus-16.ebuild b/media-sound/potamus/potamus-16.ebuild new file mode 100644 index 000000000000..5c3006b41a77 --- /dev/null +++ b/media-sound/potamus/potamus-16.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +inherit gnome2 + +DESCRIPTION="a lightweight audio player with a simple interface and an emphasis on high audio quality" +HOMEPAGE="http://offog.org/code/potamus.html" +SRC_URI="http://offog.org/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="audiofile flac mad modplug opus vorbis +ao jack" + +RDEPEND="x11-libs/gtk+:2 + >=gnome-base/libglade-2 + media-libs/libsamplerate + virtual/ffmpeg + audiofile? ( media-libs/audiofile ) + flac? ( media-libs/flac ) + mad? ( media-libs/libmad ) + modplug? ( media-libs/libmodplug ) + opus? ( media-libs/opusfile ) + vorbis? ( media-libs/libvorbis ) + ao? ( media-libs/libao ) + jack? ( media-sound/jack-audio-connection-kit )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_configure() { + econf \ + $(use_enable audiofile input-audiofile) \ + $(use_enable flac input-flac) \ + $(use_enable mad input-mad) \ + $(use_enable modplug input-modplug) \ + $(use_enable opus input-opus) \ + $(use_enable vorbis input-vorbis) \ + $(use_enable ao output-ao) \ + $(use_enable jack output-jack) + +} + +src_install() { + default +} |