blob: c00bd9e61e6ace7bac8051478e5e162fc7ddf906 (
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/gudev-sharp/gudev-sharp-0.1.ebuild,v 1.2 2011/03/24 11:40:40 hwoarang Exp $
EAPI=2
inherit mono
DESCRIPTION="GUDEV API C# binding"
HOMEPAGE="http://launchpad.net/gudev-sharp"
SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${PN}-1.0-${PV}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE=""
RDEPEND=">=dev-dotnet/gtk-sharp-1.9
>=dev-dotnet/gtk-sharp-gapi-1.9
>=sys-fs/udev-146[extras]"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S=${WORKDIR}/${PN}-1.0-${PV}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS
}
|