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: gnome-keyring-sharp-1.0.2-r1.ebuild ChangeLog
Date: Fri, 24 May 2013 18:54:44
Message-Id: 20130524185439.A2AA72171D@flycatcher.gentoo.org
1 pacho 13/05/24 18:54:39
2
3 Modified: ChangeLog
4 Added: gnome-keyring-sharp-1.0.2-r1.ebuild
5 Log:
6 Apply fedora patch fixing monodoc location, drop unneeded doc USE flag, stop using deprecated mono.eclass
7
8 (Portage version: 2.1.12.1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.13 dev-dotnet/gnome-keyring-sharp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 4 May 2012 03:56:55 -0000 1.12
24 +++ ChangeLog 24 May 2013 18:54:39 -0000 1.13
25 @@ -1,6 +1,14 @@
26 # ChangeLog for dev-dotnet/gnome-keyring-sharp
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog,v 1.12 2012/05/04 03:56:55 jdhore Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gnome-keyring-sharp/ChangeLog,v 1.13 2013/05/24 18:54:39 pacho Exp $
31 +
32 +*gnome-keyring-sharp-1.0.2-r1 (24 May 2013)
33 +
34 + 24 May 2013; Pacho Ramos <pacho@g.o>
35 + +files/gnome-keyring-sharp-1.0.2-monodoc-dir.patch,
36 + +gnome-keyring-sharp-1.0.2-r1.ebuild:
37 + Apply fedora patch fixing monodoc location, drop unneeded doc USE flag, stop
38 + using deprecated mono.eclass
39
40 04 May 2012; Jeff Horelick <jdhore@g.o>
41 gnome-keyring-sharp-1.0.2.ebuild:
42 @@ -67,4 +75,3 @@
43 25 Nov 2008; Peter Alfredsen <loki_val@g.o> +metadata.xml,
44 +gnome-keyring-sharp-1.0.0.ebuild:
45 Initial import. Ebuild fetched from ikelos' overlay.
46 -
47
48
49
50 1.1 dev-dotnet/gnome-keyring-sharp/gnome-keyring-sharp-1.0.2-r1.ebuild
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/gnome-keyring-sharp/gnome-keyring-sharp-1.0.2-r1.ebuild?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/gnome-keyring-sharp/gnome-keyring-sharp-1.0.2-r1.ebuild?rev=1.1&content-type=text/plain
54
55 Index: gnome-keyring-sharp-1.0.2-r1.ebuild
56 ===================================================================
57 # Copyright 1999-2013 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 # $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gnome-keyring-sharp/gnome-keyring-sharp-1.0.2-r1.ebuild,v 1.1 2013/05/24 18:54:39 pacho Exp $
60
61 EAPI=5
62 inherit autotools eutils mono-env
63
64 DESCRIPTION="C# implementation of gnome-keyring"
65 HOMEPAGE="http://www.mono-project.com/ https://github.com/mono/gnome-keyring-sharp"
66 SRC_URI="http://www.go-mono.com/archive/${PN}/${P}.tar.gz"
67
68 LICENSE="MIT"
69 SLOT="0"
70 KEYWORDS="~amd64 ~ppc ~x86"
71 IUSE=""
72
73 RDEPEND="
74 >=dev-lang/mono-2.0
75 >=gnome-base/libgnome-keyring-2.30.0
76 dev-dotnet/glib-sharp
77 "
78 DEPEND="${RDEPEND}
79 virtual/pkgconfig
80 "
81
82 src_prepare() {
83 # Disable building samples.
84 sed -i -e 's:sample::' "${S}"/Makefile.in || die "sed failed"
85
86 # Apply Fedora patches
87 epatch "${FILESDIR}/${PN}-1.0.2-monodoc-dir.patch"
88 eautoreconf
89 }
90
91 src_compile() {
92 # This dies without telling in docs with anything not -j1
93 # CSC=gmcs needed for http://bugs.gentoo.org/show_bug.cgi?id=250069
94 emake -j1 CSC=gmcs
95 }
96
97 src_install() {
98 default
99 prune_libtool_files --modules
100 }