Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-dotnet/zeitgeist-sharp: ChangeLog zeitgeist-sharp-0.8.0.0-r1.ebuild
Date: Fri, 31 Aug 2012 15:36:47
Message-Id: 20120831153635.A26B120DAC@flycatcher.gentoo.org
1 jlec 12/08/31 15:36:35
2
3 Modified: ChangeLog
4 Added: zeitgeist-sharp-0.8.0.0-r1.ebuild
5 Log:
6 dev-dotnet/zeitgeist-sharp: Fix unchanged variable in pkgconfig file, #432334
7
8 (Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.5 dev-dotnet/zeitgeist-sharp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/zeitgeist-sharp/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/zeitgeist-sharp/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/zeitgeist-sharp/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/zeitgeist-sharp/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 28 Jun 2012 17:08:17 -0000 1.4
24 +++ ChangeLog 31 Aug 2012 15:36:35 -0000 1.5
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-dotnet/zeitgeist-sharp
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/zeitgeist-sharp/ChangeLog,v 1.4 2012/06/28 17:08:17 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/zeitgeist-sharp/ChangeLog,v 1.5 2012/08/31 15:36:35 jlec Exp $
30 +
31 +*zeitgeist-sharp-0.8.0.0-r1 (31 Aug 2012)
32 +
33 + 31 Aug 2012; Justin Lecher <jlec@g.o>
34 + +zeitgeist-sharp-0.8.0.0-r1.ebuild:
35 + Fix unchanged variable in pkgconfig file, #432334
36
37 28 Jun 2012; Justin Lecher <jlec@g.o> zeitgeist-sharp-0.8.0.0.ebuild,
38 +files/zeitgeist-sharp-0.8.0.0-zg-0.9.patch:
39
40
41
42 1.1 dev-dotnet/zeitgeist-sharp/zeitgeist-sharp-0.8.0.0-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/zeitgeist-sharp/zeitgeist-sharp-0.8.0.0-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/zeitgeist-sharp/zeitgeist-sharp-0.8.0.0-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: zeitgeist-sharp-0.8.0.0-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-dotnet/zeitgeist-sharp/zeitgeist-sharp-0.8.0.0-r1.ebuild,v 1.1 2012/08/31 15:36:35 jlec Exp $
52
53 EAPI=4
54
55 AUTOTOOLS_AUTORECONF=yes
56
57 inherit autotools-utils mono versionator
58
59 DIR_PV=$(get_version_component_range 1-2)
60 DIR_PV2=$(get_version_component_range 1-3)
61
62 DESCRIPTION="Mono DBus API wrapper for Zeitgeist"
63 HOMEPAGE="https://launchpad.net/zeitgeist-sharp/"
64 SRC_URI="
65 http://launchpad.net/zeitgeist-sharp/${DIR_PV}/${DIR_PV2}/+download/${P}.tar.gz
66 doc? ( http://launchpad.net/zeitgeist-sharp/${DIR_PV}/${DIR_PV2}/+download/${PN}-docs-${DIR_PV2}.tar.gz )"
67
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
70 LICENSE="GPL-3"
71 IUSE="doc"
72
73 RDEPEND="
74 dev-dotnet/dbus-sharp
75 dev-dotnet/dbus-sharp-glib
76 dev-dotnet/glib-sharp
77 dev-lang/mono
78 gnome-extra/zeitgeist"
79 DEPEND="${RDEPEND}
80 virtual/pkgconfig"
81
82 AUTOTOOLS_IN_SOURCE_BUILD=1
83
84 PATCHES=(
85 "${FILESDIR}"/${P}-zg-0.9.patch
86 "${FILESDIR}"/${P}-automake-1.12.patch )
87
88 src_prepare() {
89 sed \
90 -e "s:@expanded_libdir@:@libdir@:" \
91 -i Zeitgeist/zeitgeist-sharp.pc.in || die
92 autotools-utils_src_prepare
93 }
94
95 src_install() {
96 autotools-utils_src_install
97 use doc && dohtml -r "${WORKDIR}"/${PN}-docs/*
98 }