blob: 302356dd54c8e49e964cb4ffb2a5fe38685b12d2 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/banshee-official-plugins/banshee-official-plugins-0.11.2.ebuild,v 1.1 2006/10/30 03:44:34 metalgod Exp $
inherit mono
DESCRIPTION="Banshee Official Plugins"
HOMEPAGE="http://www.banshee-project.org/"
SRC_URI="http://banshee-project.org/files/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=">=media-sound/banshee-0.11.2"
RDEPEND=""
src_compile() {
econf || die
emake -j1 || die
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
}
|