diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-01-17 22:26:36 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-01-17 22:26:36 +0000 |
commit | 58b07054867ca24133c8d0f2a9ab959b22899c2c (patch) | |
tree | 491f7d72ac9b655f256fbc18e1af2e30a003dafc /media-sound/potamus/potamus-14.ebuild | |
parent | Bump. Thanks to proxy-maintainer Erik Falor (fadein) ewfalor at gmail dot com . (diff) | |
download | gentoo-2-58b07054867ca24133c8d0f2a9ab959b22899c2c.tar.gz gentoo-2-58b07054867ca24133c8d0f2a9ab959b22899c2c.tar.bz2 gentoo-2-58b07054867ca24133c8d0f2a9ab959b22899c2c.zip |
Version bump. This fixes build with latest ffmpeg, bug #443432
(Portage version: 2.2.0_alpha154/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-sound/potamus/potamus-14.ebuild')
-rw-r--r-- | media-sound/potamus/potamus-14.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/media-sound/potamus/potamus-14.ebuild b/media-sound/potamus/potamus-14.ebuild new file mode 100644 index 000000000000..7b02885d4176 --- /dev/null +++ b/media-sound/potamus/potamus-14.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/potamus/potamus-14.ebuild,v 1.1 2013/01/17 22:26:36 aballier Exp $ + +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 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 ) + 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 vorbis input-vorbis) \ + $(use_enable ao output-ao) \ + $(use_enable jack output-jack) + +} + +src_install() { + default +} |