Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/amyedit: ChangeLog amyedit-1.0-r1.ebuild
Date: Sat, 30 Aug 2008 17:07:58
Message-Id: E1KZTvX-0005pW-34@stork.gentoo.org
1 aballier 08/08/30 17:07:55
2
3 Modified: ChangeLog amyedit-1.0-r1.ebuild
4 Log:
5 Run eautoreconf after patching makefile.am instead of letting maintainer-mode do it, should fix bug #205984. Fix build with recent libsigc++ by Sven E. dark@×××××××××.org, bug #229801.
6 (Portage version: 2.2_rc8/cvs/Linux 2.6.26.3 x86_64)
7
8 Revision Changes Path
9 1.18 app-editors/amyedit/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/amyedit/ChangeLog?rev=1.18&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/amyedit/ChangeLog?rev=1.18&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/amyedit/ChangeLog?r1=1.17&r2=1.18
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-editors/amyedit/ChangeLog,v
18 retrieving revision 1.17
19 retrieving revision 1.18
20 diff -u -r1.17 -r1.18
21 --- ChangeLog 16 Aug 2008 16:52:58 -0000 1.17
22 +++ ChangeLog 30 Aug 2008 17:07:54 -0000 1.18
23 @@ -1,6 +1,12 @@
24 # ChangeLog for app-editors/amyedit
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-editors/amyedit/ChangeLog,v 1.17 2008/08/16 16:52:58 tove Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-editors/amyedit/ChangeLog,v 1.18 2008/08/30 17:07:54 aballier Exp $
28 +
29 + 30 Aug 2008; Alexis Ballier <aballier@g.o>
30 + +files/amyedit-1.0-signal.patch, amyedit-1.0-r1.ebuild:
31 + Run eautoreconf after patching makefile.am instead of letting
32 + maintainer-mode do it, should fix bug #205984. Fix build with recent
33 + libsigc++ by Sven E. dark@×××××××××.org, bug #229801.
34
35 16 Aug 2008; Torsten Veller <tove@g.o> metadata.xml:
36 Remove pclouds from metadata.xml (#49680)
37
38
39
40 1.3 app-editors/amyedit/amyedit-1.0-r1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/amyedit/amyedit-1.0-r1.ebuild?rev=1.3&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/amyedit/amyedit-1.0-r1.ebuild?rev=1.3&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/amyedit/amyedit-1.0-r1.ebuild?r1=1.2&r2=1.3
45
46 Index: amyedit-1.0-r1.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/app-editors/amyedit/amyedit-1.0-r1.ebuild,v
49 retrieving revision 1.2
50 retrieving revision 1.3
51 diff -u -r1.2 -r1.3
52 --- amyedit-1.0-r1.ebuild 9 Jan 2008 12:33:59 -0000 1.2
53 +++ amyedit-1.0-r1.ebuild 30 Aug 2008 17:07:54 -0000 1.3
54 @@ -1,8 +1,8 @@
55 # Copyright 1999-2008 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/app-editors/amyedit/amyedit-1.0-r1.ebuild,v 1.2 2008/01/09 12:33:59 pclouds Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/app-editors/amyedit/amyedit-1.0-r1.ebuild,v 1.3 2008/08/30 17:07:54 aballier Exp $
59
60 -inherit eutils
61 +inherit eutils autotools
62
63 DESCRIPTION=" AmyEdit is a LaTeX editor"
64 HOMEPAGE="http://amyedit.sf.net"
65 @@ -13,6 +13,7 @@
66 IUSE=""
67 RDEPEND=">=dev-cpp/gtkmm-2.6
68 >=dev-cpp/glibmm-2.14
69 + >=dev-libs/libsigc++-2.2
70 =x11-libs/gtksourceview-1*
71 app-text/aspell"
72 DEPEND="${RDEPEND}
73 @@ -20,7 +21,10 @@
74
75 src_unpack() {
76 unpack ${A}
77 + cd "${S}"
78 epatch "${FILESDIR}/${P}-keyfile.patch"
79 + epatch "${FILESDIR}/${P}-signal.patch"
80 + eautoreconf
81 }
82
83 src_install() {