Gentoo Archives: gentoo-commits

From: "Mike Auty (ikelos)" <ikelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-vcs/gitg: ChangeLog gitg-0.1.0.ebuild
Date: Fri, 25 Feb 2011 11:07:12
Message-Id: 20110225110700.2BD9420054@flycatcher.gentoo.org
1 ikelos 11/02/25 11:07:00
2
3 Modified: ChangeLog
4 Added: gitg-0.1.0.ebuild
5 Log:
6 Bump to 0.1.0, thanks to Alphat-PC (bug 354065).
7
8 (Portage version: 2.2.0_alpha25/cvs/Linux i686)
9
10 Revision Changes Path
11 1.8 dev-vcs/gitg/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-vcs/gitg/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 2 Jan 2011 01:58:02 -0000 1.7
24 +++ ChangeLog 25 Feb 2011 11:06:59 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-vcs/gitg
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitg/ChangeLog,v 1.7 2011/01/02 01:58:02 sping Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitg/ChangeLog,v 1.8 2011/02/25 11:06:59 ikelos Exp $
30 +
31 +*gitg-0.1.0 (25 Feb 2011)
32 +
33 + 25 Feb 2011; Mike Auty <ikelos@g.o> +gitg-0.1.0.ebuild:
34 + Bump to 0.1.0, thanks to Alphat-PC (bug 354065).
35
36 02 Jan 2011; Sebastian Pipping <sping@g.o> gitg-0.0.8.ebuild:
37 Remove gone configure option --disable-bundle, integrate test suite from
38
39
40
41 1.1 dev-vcs/gitg/gitg-0.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/gitg-0.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/gitg-0.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gitg-0.1.0.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitg/gitg-0.1.0.ebuild,v 1.1 2011/02/25 11:07:00 ikelos Exp $
51
52 EAPI="3"
53
54 inherit gnome2
55
56 DESCRIPTION="git repository viewer for GNOME"
57 HOMEPAGE="http://trac.novowork.com/gitg/"
58
59 LICENSE="|| ( GPL-2 GPL-3 )"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE=""
63
64 RDEPEND=">=dev-libs/glib-2.26:2
65 >=x11-libs/gtk+-2.18:2
66 >=x11-libs/gtksourceview-2.8:2.0
67 >=gnome-base/gconf-2.10
68 >=gnome-base/gsettings-desktop-schemas-0.1.1
69 dev-vcs/git"
70
71 DEPEND="${RDEPEND}
72 >=sys-devel/gettext-0.17
73 >=dev-util/pkgconfig-0.15
74 >=dev-util/intltool-0.40"
75
76 pkg_setup() {
77 G2CONF="${G2CONF}
78 --disable-dependency-tracking
79 --with-gtk=2.0"
80
81 DOCS="AUTHORS ChangeLog NEWS README"
82 }
83
84 src_prepare() {
85 # Fix intltoolize broken file, see <https://bugzilla.gnome.org/show_bug.cgi?id=577133>
86 sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i "${S}/po/Makefile.in.in" || die "sed failed"
87 }
88
89 src_install() {
90 gnome2_src_install
91 find "${ED}" -name "*.la" -delete || die "Removal of .la files failed"
92 }
93
94 src_test() {
95 emake check || die
96 }