blob: aaa444b870c58d4808745fb35914d7b193164123 (
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
46
47
48
49
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gnome-keyring-sharp/gnome-keyring-sharp-1.0.0-r1.ebuild,v 1.1 2009/01/24 01:20:16 loki_val Exp $
EAPI=2
inherit mono eutils autotools
DESCRIPTION="C# implementation of gnome-keyring"
HOMEPAGE="http://www.mono-project.com/"
SRC_URI="http://ftp.novell.com/pub/mono/sources/${PN}/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="dbus doc"
RDEPEND=">=dev-lang/mono-2.0
>=gnome-base/gnome-keyring-2.22
dbus? ( dev-dotnet/dbus-sharp )
doc? ( virtual/monodoc )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_prepare() {
# https://bugzilla.novell.com/show_bug.cgi?id=469141
epatch "${FILESDIR}/${P}-monodoc.patch"
eautoreconf
# Disable building samples.
sed -i -e 's:sample::' "${S}"/Makefile.in || die "sed failed"
}
src_configure() {
econf $(use_enable dbus) \
$(use_enable doc monodoc) || die "econf failed"
}
src_compile() {
# This dies without telling in docs with anything not -j1
# CSC=gmcs needed for http://bugs.gentoo.org/show_bug.cgi?id=250069
emake -j1 CSC=gmcs || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog README
mono_multilib_comply
find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
}
|