summaryrefslogtreecommitdiff
blob: 23b636a1433badcc242fd26df3e568f5b6f960ce (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
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/dbus-sharp/dbus-sharp-0.6.0.ebuild,v 1.2 2008/01/07 03:54:37 josejx Exp $

inherit mono multilib

MY_PN="ndesk-dbus"

DESCRIPTION="Managed D-Bus Implementation for .NET"
HOMEPAGE="http://www.ndesk.org/DBusSharp"
SRC_URI="http://www.ndesk.org/archive/${PN}/${MY_PN}-${PV}.tar.gz"

LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug"

DEPEND=">=dev-lang/mono-1.2.4"
RDEPEND="${DEPEND}
		 >=sys-apps/dbus-1.0"

S="${WORKDIR}/${MY_PN}-${PV}"

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

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