# 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" }