blob: b0372eb5d402838585418cd8695c9027a0de1d76 (
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
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit mono autotools
DESCRIPTION="Official Plugins for Banshee"
HOMEPAGE="http://banshee-project.org/PluginRepository"
SRC_URI="http://www.gentoo.org/~nichoj/distfiles/${P}.tar.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=media-sound/banshee-0.10.11_pre20060713"
RDEPEND="${DEPEND}"
RESTRICT="mirror"
S="${WORKDIR}/${PN}"
src_unpack() {
unpack ${A}
cd ${S}
eautoreconf || die "eautoreconf failed"
}
src_compile() {
local myconf
# latest snapshot doesn't like smart playlists
myconf="--disable-smart-playlists"
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR=${D} install || die "emake install failed"
}
|