summaryrefslogtreecommitdiff
blob: d6a4ece14911054dfa1f8bfad40ee6da59a71016 (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit mono autotools

DESCRIPTION="Allows Banshee to serve as an alarm clock."
HOMEPAGE="http://banshee-project.org/PluginRepository"
SRC_URI="http://www.gentoo.org/~nichoj/distfiles/${P}.tar.bz2"

LICENSE="GPL-2.1"
SLOT="0"
KEYWORDS="~x86"
IUSE=""

DEPEND=">=media-sound/banshee-0.10.10"
RDEPEND="${RDEPEND}"

S="${WORKDIR}/${PN}"


src_unpack() {
	unpack ${A}
	cd ${S}
	eautoreconf || die "eautoreconf failed"
}

src_compile()  {
	econf || die "econf failed"
	emake || die "emake failed"
}

src_install() {
	emake DESTDIR=${D} install || die "emake install failed"
}