blob: a3be02c748b4c9da96678228cb64c57a87f0411c (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gsf-sharp/gsf-sharp-0.7.ebuild,v 1.2 2006/03/02 13:05:54 dsd Exp $
inherit eutils mono autotools
DESCRIPTION="C# bindings for libgsf"
HOMEPAGE="http://www.mono-project.com/"
SRC_URI="http://primates.ximian.com/~joe/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-lang/mono
>=gnome-extra/libgsf-1.13
>=dev-dotnet/gtk-sharp-2.3.90"
src_unpack() {
unpack ${A}
cd ${S}
# Bug 118950 - no need to check for libgsf-gnome-1
# Committed upstream for next release
epatch ${FILESDIR}/${P}-no-libgsf-gnome-dep.patch
eautoconf
}
src_install() {
make install DESTDIR="${D}"
dodoc AUTHORS ChangeLog NEWS README
}
|