24 lines
644 B
Bash
24 lines
644 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/ndesk-dbus/ndesk-dbus-0.6.1a.ebuild,v 1.2 2012/05/04 03:56:57 jdhore Exp $
|
|
|
|
inherit mono
|
|
|
|
DESCRIPTION="Managed D-Bus Implementation for .NET"
|
|
HOMEPAGE="http://www.ndesk.org/DBusSharp"
|
|
SRC_URI="http://www.ndesk.org/archive/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=dev-lang/mono-1.2.4
|
|
>=sys-apps/dbus-1"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "emake install failed."
|
|
dodoc AUTHORS README
|
|
}
|