blob: 56d010be504bd3bff5f48be1b673126897388fab (
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-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit eutils mono
DESCRIPTION="C# bindings for libgsf"
HOMEPAGE="http://www.mono-project.com/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND="dev-lang/mono
>=gnome-extra/libgsf-1.14.1
>=dev-dotnet/gtk-sharp-2.4.0"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_install() {
make install DESTDIR="${D}"
dodoc AUTHORS ChangeLog NEWS README
}
|