blob: 03e8e195d4db5f772abdf9bc716c90fd388a5d5b (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gio-sharp/gio-sharp-0.2-r1.ebuild,v 1.1 2011/03/12 12:51:55 angelos Exp $
EAPI=2
inherit autotools eutils mono
DESCRIPTION="GIO API C# binding"
HOMEPAGE="http://github.com/mono/gio-sharp"
SRC_URI="http://github.com/mono/${PN}/tarball/${PV} -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-dotnet/glib-sharp-2.12
>=dev-dotnet/gtk-sharp-gapi-2.12
>=dev-libs/glib-2.22:2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
mv *-${PN}-* "${S}"
}
src_prepare() {
epatch "${FILESDIR}"/${P}-debug-libs.patch
sed -i -e '/autoreconf/d' autogen-generic.sh || die
NOCONFIGURE=1 ./autogen-2.22.sh || die
eautoreconf
}
src_compile() {
emake -j1 || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS NEWS README
mono_multilib_comply
}
|