Gentoo Archives: gentoo-commits

From: "Peter Alfredsen (loki_val)" <loki_val@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-dotnet/gnome-keyring-sharp: ChangeLog gnome-keyring-sharp-1.0.0-r1.ebuild gnome-keyring-sharp-1.0.0.ebuild
Date: Sat, 24 Jan 2009 01:20:19
Message-Id: E1LQXC4-0000eh-UJ@stork.gentoo.org
1 loki_val 09/01/24 01:20:16
2
3 Modified: ChangeLog
4 Added: gnome-keyring-sharp-1.0.0-r1.ebuild
5 Removed: gnome-keyring-sharp-1.0.0.ebuild
6 Log:
7 Fix bug 250069, g-k-s would pick up dev-scheme/chickens csc executable instead of gmcs. Also fix bug 254122, add doc use flag for monodoc dependency. Transition to gmcs done. Multilib-safe.
8 (Portage version: 2.2_rc23/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 dev-dotnet/gnome-keyring-sharp/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 14 Dec 2008 15:25:12 -0000 1.3
24 +++ ChangeLog 24 Jan 2009 01:20:16 -0000 1.4
25 @@ -1,6 +1,15 @@
26 # ChangeLog for dev-dotnet/gnome-keyring-sharp
27 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog,v 1.3 2008/12/14 15:25:12 loki_val Exp $
29 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog,v 1.4 2009/01/24 01:20:16 loki_val Exp $
31 +
32 +*gnome-keyring-sharp-1.0.0-r1 (24 Jan 2009)
33 +
34 + 24 Jan 2009; Peter Alfredsen <loki_val@g.o>
35 + +files/gnome-keyring-sharp-1.0.0-monodoc.patch,
36 + -gnome-keyring-sharp-1.0.0.ebuild, +gnome-keyring-sharp-1.0.0-r1.ebuild:
37 + Fix bug 250069, g-k-s would pick up dev-scheme/chickens csc executable
38 + instead of gmcs. Also fix bug 254122, add doc use flag for monodoc
39 + dependency. Transition to gmcs done. Multilib-safe.
40
41 14 Dec 2008; Peter Alfredsen <loki_val@g.o>
42 gnome-keyring-sharp-1.0.0.ebuild:
43
44
45
46 1.1 dev-dotnet/gnome-keyring-sharp/gnome-keyring-sharp-1.0.0-r1.ebuild
47
48 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/gnome-keyring-sharp/gnome-keyring-sharp-1.0.0-r1.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/gnome-keyring-sharp/gnome-keyring-sharp-1.0.0-r1.ebuild?rev=1.1&content-type=text/plain
50
51 Index: gnome-keyring-sharp-1.0.0-r1.ebuild
52 ===================================================================
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $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 $
56
57 EAPI=2
58
59 inherit mono eutils autotools
60
61 DESCRIPTION="C# implementation of gnome-keyring"
62 HOMEPAGE="http://www.mono-project.com/"
63 SRC_URI="http://ftp.novell.com/pub/mono/sources/${PN}/${P}.tar.bz2"
64
65 LICENSE="MIT"
66 SLOT="0"
67 KEYWORDS="~x86 ~amd64"
68 IUSE="dbus doc"
69
70 RDEPEND=">=dev-lang/mono-2.0
71 >=gnome-base/gnome-keyring-2.22
72 dbus? ( dev-dotnet/dbus-sharp )
73 doc? ( virtual/monodoc )"
74 DEPEND="${RDEPEND}
75 dev-util/pkgconfig"
76
77 src_prepare() {
78 # https://bugzilla.novell.com/show_bug.cgi?id=469141
79 epatch "${FILESDIR}/${P}-monodoc.patch"
80 eautoreconf
81 # Disable building samples.
82 sed -i -e 's:sample::' "${S}"/Makefile.in || die "sed failed"
83 }
84
85 src_configure() {
86 econf $(use_enable dbus) \
87 $(use_enable doc monodoc) || die "econf failed"
88 }
89
90 src_compile() {
91 # This dies without telling in docs with anything not -j1
92 # CSC=gmcs needed for http://bugs.gentoo.org/show_bug.cgi?id=250069
93 emake -j1 CSC=gmcs || die "emake failed"
94 }
95
96 src_install() {
97 emake DESTDIR="${D}" install || die "emake install failed"
98 dodoc AUTHORS ChangeLog README
99 mono_multilib_comply
100 find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
101 }