blob: 088e3f86b8537b8a1512c9353f74ea2dac705471 (
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
30
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=2
inherit eutils
DESCRIPTION="The moodbar tool and gstreamer plugin for Amarok"
HOMEPAGE="https://amarok.kde.org/wiki/Moodbar"
SRC_URI="http://pwsp.net/~qbob/moodbar-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86"
IUSE="mp3 ogg vorbis flac"
RDEPEND="media-libs/gst-plugins-base:0.10
media-libs/gst-plugins-good:0.10
media-plugins/gst-plugins-meta:0.10
sci-libs/fftw:3.0"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${P}-gthread_init.patch
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
|