Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@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.2.ebuild gnome-keyring-sharp-1.0.0-r2.ebuild
Date: Thu, 25 Nov 2010 22:50:40
Message-Id: 20101125225037.0569920051@flycatcher.gentoo.org
1 pacho 10/11/25 22:50:36
2
3 Modified: ChangeLog
4 Added: gnome-keyring-sharp-1.0.2.ebuild
5 Removed: gnome-keyring-sharp-1.0.0-r2.ebuild
6 Log:
7 Version bump including the patches we were applying and solving glue path (bug #345119 by Wojciech Dzierżanowski). Remove old.
8
9 (Portage version: 2.1.9.24/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.7 dev-dotnet/gnome-keyring-sharp/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog?rev=1.7&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog?rev=1.7&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog?r1=1.6&r2=1.7
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog,v
21 retrieving revision 1.6
22 retrieving revision 1.7
23 diff -u -r1.6 -r1.7
24 --- ChangeLog 7 Oct 2010 19:32:26 -0000 1.6
25 +++ ChangeLog 25 Nov 2010 22:50:36 -0000 1.7
26 @@ -1,6 +1,15 @@
27 # ChangeLog for dev-dotnet/gnome-keyring-sharp
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog,v 1.6 2010/10/07 19:32:26 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog,v 1.7 2010/11/25 22:50:36 pacho Exp $
31 +
32 +*gnome-keyring-sharp-1.0.2 (25 Nov 2010)
33 +
34 + 25 Nov 2010; Pacho Ramos <pacho@g.o>
35 + -gnome-keyring-sharp-1.0.0-r2.ebuild,
36 + -files/gnome-keyring-sharp-1.0.0-monodoc-r1.patch,
37 + +gnome-keyring-sharp-1.0.2.ebuild:
38 + Version bump including the patches we were applying and solving glue path
39 + (bug #345119 by Wojciech Dzierżanowski). Remove old.
40
41 07 Oct 2010; Pacho Ramos <pacho@g.o>
42 -gnome-keyring-sharp-1.0.0-r1.ebuild,
43
44
45
46 1.1 dev-dotnet/gnome-keyring-sharp/gnome-keyring-sharp-1.0.2.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/gnome-keyring-sharp/gnome-keyring-sharp-1.0.2.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/gnome-keyring-sharp/gnome-keyring-sharp-1.0.2.ebuild?rev=1.1&content-type=text/plain
50
51 Index: gnome-keyring-sharp-1.0.2.ebuild
52 ===================================================================
53 # Copyright 1999-2010 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.2.ebuild,v 1.1 2010/11/25 22:50:36 pacho Exp $
56
57 EAPI="2"
58
59 inherit mono
60
61 DESCRIPTION="C# implementation of gnome-keyring"
62 HOMEPAGE="http://www.mono-project.com/ https://github.com/mono/gnome-keyring-sharp"
63 SRC_URI="http://www.go-mono.com/archive/${PN}/${P}.tar.gz"
64
65 LICENSE="MIT"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="doc"
69
70 RDEPEND=">=dev-lang/mono-2.0
71 >=gnome-base/libgnome-keyring-2.30.0
72 dev-dotnet/glib-sharp
73 doc? ( virtual/monodoc )"
74 DEPEND="${RDEPEND}
75 dev-util/pkgconfig"
76
77 src_prepare() {
78 # Disable building samples.
79 sed -i -e 's:sample::' "${S}"/Makefile.in || die "sed failed"
80 }
81
82 src_configure() {
83 econf $(use_enable doc monodoc) || die "econf failed"
84 }
85
86 src_compile() {
87 # This dies without telling in docs with anything not -j1
88 # CSC=gmcs needed for http://bugs.gentoo.org/show_bug.cgi?id=250069
89 emake -j1 CSC=gmcs || die "emake failed"
90 }
91
92 src_install() {
93 emake DESTDIR="${D}" install || die "emake install failed"
94 dodoc AUTHORS ChangeLog README || die
95 mono_multilib_comply
96 find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
97 }