Gentoo Archives: gentoo-commits

From: "Steve Arnold (nerdboy)" <nerdboy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-geosciences/grass: ChangeLog grass-6.3.0.ebuild
Date: Sat, 05 Sep 2009 02:10:01
Message-Id: E1Mjkj1-0000JO-V8@stork.gentoo.org
1 nerdboy 09/09/05 02:09:59
2
3 Modified: ChangeLog grass-6.3.0.ebuild
4 Log:
5 Updated to use postgresql virtual in preparation for push to stable.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.70 sci-geosciences/grass/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/grass/ChangeLog?rev=1.70&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/grass/ChangeLog?rev=1.70&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/grass/ChangeLog?r1=1.69&r2=1.70
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/grass/ChangeLog,v
18 retrieving revision 1.69
19 retrieving revision 1.70
20 diff -u -r1.69 -r1.70
21 --- ChangeLog 2 Aug 2009 18:50:17 -0000 1.69
22 +++ ChangeLog 5 Sep 2009 02:09:59 -0000 1.70
23 @@ -1,6 +1,13 @@
24 # ChangeLog for sci-geosciences/grass
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/grass/ChangeLog,v 1.69 2009/08/02 18:50:17 nerdboy Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/grass/ChangeLog,v 1.70 2009/09/05 02:09:59 nerdboy Exp $
28 +
29 + 04 Sep 2009; Steve Arnold <nerdboy@g.o> grass-6.3.0.ebuild:
30 + Updated to use postgresql virtual and verified it bvilds correctly from
31 + libpq-8.0 all the way through postgres-8.3.7 (which means it can go
32 + stable now). Yee-haw! Also tested importing a bunch of old vector data
33 + using both postgres and sqlite with no issues (since it now defaults to
34 + requiring a dull SQL backend).
35
36 02 Aug 2009; Steve Arnold <nerdboy@g.o> grass-6.3.0.ebuild:
37 Updated desktop file and description (set terminal=false).
38 @@ -8,7 +15,7 @@
39 08 Jun 2009; Steve Arnold <nerdboy@g.o>
40 +files/grass-6.3.0-gcc44.patch, grass-6.3.0.ebuild:
41 Updated with additional C++ include for bug #270916 (thanks to
42 - Jiří Moravec <qjim@×××××.cz> for the patch). I still don't have
43 + Jiri Moravec <qjim@×××××.cz> for the patch). I still don't have
44 gcc 4.4 yet, but the benign nature of the patch and building with
45 gcc 4.3.3 should suffice.
46
47
48
49
50 1.9 sci-geosciences/grass/grass-6.3.0.ebuild
51
52 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/grass/grass-6.3.0.ebuild?rev=1.9&view=markup
53 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/grass/grass-6.3.0.ebuild?rev=1.9&content-type=text/plain
54 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/grass/grass-6.3.0.ebuild?r1=1.8&r2=1.9
55
56 Index: grass-6.3.0.ebuild
57 ===================================================================
58 RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/grass/grass-6.3.0.ebuild,v
59 retrieving revision 1.8
60 retrieving revision 1.9
61 diff -u -r1.8 -r1.9
62 --- grass-6.3.0.ebuild 2 Aug 2009 18:50:17 -0000 1.8
63 +++ grass-6.3.0.ebuild 5 Sep 2009 02:09:59 -0000 1.9
64 @@ -1,6 +1,6 @@
65 # Copyright 1999-2009 Gentoo Foundation
66 # Distributed under the terms of the GNU General Public License v2
67 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/grass/grass-6.3.0.ebuild,v 1.8 2009/08/02 18:50:17 nerdboy Exp $
68 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/grass/grass-6.3.0.ebuild,v 1.9 2009/09/05 02:09:59 nerdboy Exp $
69
70 inherit eutils distutils fdo-mime versionator wxwidgets
71
72 @@ -39,7 +39,10 @@
73 opengl? ( virtual/opengl )
74 motif? ( x11-libs/openmotif )
75 png? ( >=media-libs/libpng-1.2.2 )
76 - postgres? ( >=dev-db/postgresql-base-8.3 )
77 + postgres? ( || (
78 + >=virtual/postgresql-base-8.0
79 + >=virtual/postgresql-server-8.0 )
80 + )
81 python? ( dev-lang/python )
82 readline? ( sys-libs/readline )
83 sqlite? ( dev-db/sqlite )
84 @@ -127,6 +130,7 @@
85
86 src_compile() {
87 local myconf
88 + addpredict /var/cache/fontconfig
89 # wxwindows needs python (see bug #237495)
90 use wxwindows && distutils_python_version
91
92 @@ -292,6 +296,6 @@
93 Path=
94 Icon=grass_icon.png
95 Categories=Science;Education;
96 - Terminal=true
97 + Terminal=false
98 EOF
99 }