Gentoo Archives: gentoo-commits

From: "Romain Perier (mrpouet)" <mrpouet@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/dia: ChangeLog dia-0.97.ebuild
Date: Sun, 21 Jun 2009 11:53:49
Message-Id: E1MILcG-0000hy-Bm@stork.gentoo.org
1 mrpouet 09/06/21 11:53:44
2
3 Modified: ChangeLog dia-0.97.ebuild
4 Log:
5 Fix compilation error with USE="python", bug #271855, and fix missing EAPI="2"
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.111 app-office/dia/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/dia/ChangeLog?rev=1.111&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/dia/ChangeLog?rev=1.111&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/dia/ChangeLog?r1=1.110&r2=1.111
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-office/dia/ChangeLog,v
18 retrieving revision 1.110
19 retrieving revision 1.111
20 diff -u -r1.110 -r1.111
21 --- ChangeLog 18 May 2009 20:57:43 -0000 1.110
22 +++ ChangeLog 21 Jun 2009 11:53:44 -0000 1.111
23 @@ -1,6 +1,10 @@
24 # ChangeLog for app-office/dia
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-office/dia/ChangeLog,v 1.110 2009/05/18 20:57:43 eva Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-office/dia/ChangeLog,v 1.111 2009/06/21 11:53:44 mrpouet Exp $
28 +
29 + 21 Jun 2009; <mrpouet@g.o> dia-0.97.ebuild,
30 + +files/dia-0.97-acinclude-python-fixes.patch:
31 + Fix compilation error with USE="python", bug #271855, and fix missing EAPI="2"
32
33 *dia-0.97 (18 May 2009)
34
35
36
37
38 1.2 app-office/dia/dia-0.97.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/dia/dia-0.97.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/dia/dia-0.97.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/dia/dia-0.97.ebuild?r1=1.1&r2=1.2
43
44 Index: dia-0.97.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-office/dia/dia-0.97.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- dia-0.97.ebuild 18 May 2009 20:57:43 -0000 1.1
51 +++ dia-0.97.ebuild 21 Jun 2009 11:53:44 -0000 1.2
52 @@ -1,6 +1,8 @@
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/app-office/dia/dia-0.97.ebuild,v 1.1 2009/05/18 20:57:43 eva Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/app-office/dia/dia-0.97.ebuild,v 1.2 2009/06/21 11:53:44 mrpouet Exp $
57 +
58 +EAPI="2"
59
60 inherit eutils gnome2 libtool autotools versionator python
61
62 @@ -67,6 +69,11 @@
63 # Fix compilation in a gnome environment, bug #159831
64 epatch "${FILESDIR}/${PN}-0.97.0-gnome-doc.patch"
65
66 + # Fix compilation with USE="python", bug #271855
67 + if use python; then
68 + epatch "${FILESDIR}/${P}-acinclude-python-fixes.patch"
69 + fi
70 +
71 # Skip man generation
72 if use doc; then
73 sed -i -e '/if HAVE_DB2MAN/,/man_MANS/d' doc/*/Makefile.am \