blob: a9a751d8c38c213531933a89b4590567b5012bda (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/tomboy-reminder/tomboy-reminder-0.9.ebuild,v 1.2 2006/12/07 20:51:08 compnerd Exp $
inherit mono eutils
DESCRIPTION="Reminder Plugin for Tomboy"
HOMEPAGE="http://raphael.slinckx.net/blog/projects/tomboy-reminder-plugin/"
SRC_URI="http://raphael.slinckx.net/files/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND=">=dev-lang/mono-1.0
>=app-misc/tomboy-0.3.2"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.19"
src_install() {
make DESTDIR="${D}" install || die "install failed"
dodoc README NEWS ChangeLog AUTHORS
}
|