blob: 300a0701a24539421d6fe0b16746c7c04aa012c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/moodbar/moodbar-0.1.1.ebuild,v 1.2 2006/11/11 12:22:27 malc Exp $
DESCRIPTION="The moodbar tool and gstreamer plugin for Amarok"
HOMEPAGE="http://amarok.kde.org/wiki/Moodbar"
SRC_URI="http://pwsp.net/~qbob/moodbar-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="mp3 ogg vorbis flac"
DEPEND=">=media-libs/gst-plugins-base-0.10
>=sci-libs/fftw-3.0"
RDEPEND="${DEPEND}
>=media-libs/gst-plugins-good-0.10
mp3? ( >=media-plugins/gst-plugins-mad-0.10 )
ogg? ( >=media-plugins/gst-plugins-ogg-0.10 )
vorbis? ( >=media-plugins/gst-plugins-vorbis-0.10 )
flac? ( >=media-plugins/gst-plugins-flac-0.10 )"
src_compile() {
econf || die
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die
}
|