blob: 366cb9e81d378f532fbe134522eeab8aa5858bdc (
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-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/ndesk-dbus-glib/ndesk-dbus-glib-0.4.1.ebuild,v 1.2 2011/03/12 12:36:13 angelos Exp $
EAPI=3
inherit mono multilib
DESCRIPTION="glib integration for DBus-Sharp"
HOMEPAGE="http://www.ndesk.org/DBusSharp"
SRC_URI="http://www.ndesk.org/archive/dbus-sharp/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="debug"
RDEPEND=">=dev-lang/mono-1.2.4
>=dev-dotnet/ndesk-dbus-0.4"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.19"
src_compile() {
emake || die "make failed"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
}
|