Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/anjuta: ChangeLog anjuta-3.8.4.ebuild
Date: Sun, 28 Jul 2013 17:30:52
Message-Id: 20130728173049.691D92171C@flycatcher.gentoo.org
1 tetromino 13/07/28 17:30:49
2
3 Modified: ChangeLog anjuta-3.8.4.ebuild
4 Log:
5 Fix underlinking failure with gold (bug #468620, thanks to Justin Lecher).
6
7 (Portage version: 2.2.0_alpha190/cvs/Linux x86_64, signed Manifest commit with key CF0ADD61)
8
9 Revision Changes Path
10 1.165 dev-util/anjuta/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/ChangeLog?rev=1.165&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/ChangeLog?rev=1.165&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/ChangeLog?r1=1.164&r2=1.165
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/anjuta/ChangeLog,v
19 retrieving revision 1.164
20 retrieving revision 1.165
21 diff -u -r1.164 -r1.165
22 --- ChangeLog 30 Jun 2013 15:38:41 -0000 1.164
23 +++ ChangeLog 28 Jul 2013 17:30:49 -0000 1.165
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-util/anjuta
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/anjuta/ChangeLog,v 1.164 2013/06/30 15:38:41 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/anjuta/ChangeLog,v 1.165 2013/07/28 17:30:49 tetromino Exp $
29 +
30 + 28 Jul 2013; Alexandre Rostovtsev <tetromino@g.o> anjuta-3.8.4.ebuild,
31 + +files/anjuta-3.8.4-librt.patch:
32 + Fix underlinking failure with gold (bug #468620, thanks to Justin Lecher).
33
34 30 Jun 2013; Justin Lecher <jlec@g.o> anjuta-3.6.2-r1.ebuild,
35 anjuta-3.8.3.ebuild, anjuta-3.8.4.ebuild, metadata.xml:
36
37
38
39 1.3 dev-util/anjuta/anjuta-3.8.4.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/anjuta-3.8.4.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/anjuta-3.8.4.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/anjuta-3.8.4.ebuild?r1=1.2&r2=1.3
44
45 Index: anjuta-3.8.4.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-util/anjuta/anjuta-3.8.4.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- anjuta-3.8.4.ebuild 30 Jun 2013 15:38:41 -0000 1.2
52 +++ anjuta-3.8.4.ebuild 28 Jul 2013 17:30:49 -0000 1.3
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/dev-util/anjuta/anjuta-3.8.4.ebuild,v 1.2 2013/06/30 15:38:41 jlec Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/dev-util/anjuta/anjuta-3.8.4.ebuild,v 1.3 2013/07/28 17:30:49 tetromino Exp $
58
59 EAPI="5"
60 GCONF_DEBUG="yes"
61 @@ -11,7 +11,7 @@
62 VALA_MIN_API_VERSION="0.20"
63 VALA_MAX_API_VERSION="${VALA_MIN_API_VERSION}"
64
65 -inherit gnome2 flag-o-matic readme.gentoo python-single-r1 vala
66 +inherit autotools gnome2 flag-o-matic readme.gentoo python-single-r1 vala
67
68 DESCRIPTION="A versatile IDE for GNOME"
69 HOMEPAGE="http://projects.gnome.org/anjuta/"
70 @@ -100,6 +100,11 @@
71 sed -e 's:$PYTHON-config:$PYTHON$PYTHON_VERSION-config:g' \
72 -i plugins/am-project/tests/anjuta.lst || die "sed failed"
73
74 + # fix linking with gold, bug #468620, https://bugzilla.gnome.org/show_bug.cgi?id=704985
75 + epatch "${FILESDIR}/${PN}-3.8.4-librt.patch"
76 +
77 + eautoreconf # for the librtpatch
78 +
79 use vala && vala_src_prepare
80 gnome2_src_prepare
81 }