Gentoo Archives: gentoo-commits

From: "Andrey Grozin (grozin)" <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-geosciences/viking: ChangeLog viking-1.2.2.ebuild
Date: Sat, 03 Dec 2011 11:08:00
Message-Id: 20111203110745.B69682004B@flycatcher.gentoo.org
1 grozin 11/12/03 11:07:45
2
3 Modified: ChangeLog
4 Added: viking-1.2.2.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.0_alpha79/cvs/Linux i686)
9
10 Revision Changes Path
11 1.18 sci-geosciences/viking/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/viking/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/viking/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/viking/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/viking/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 24 Jul 2011 11:20:58 -0000 1.17
24 +++ ChangeLog 3 Dec 2011 11:07:45 -0000 1.18
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-geosciences/viking
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/viking/ChangeLog,v 1.17 2011/07/24 11:20:58 scarabeus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/viking/ChangeLog,v 1.18 2011/12/03 11:07:45 grozin Exp $
30 +
31 +*viking-1.2.2 (03 Dec 2011)
32 +
33 + 03 Dec 2011; Andrey Grozin <grozin@g.o> +viking-1.2.2.ebuild:
34 + Version bump
35
36 24 Jul 2011; Tomáš Chvátal <scarabeus@g.o> viking-1.2.1.ebuild,
37 +files/viking-curl-7.21.7.patch:
38
39
40
41 1.1 sci-geosciences/viking/viking-1.2.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/viking/viking-1.2.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/viking/viking-1.2.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: viking-1.2.2.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/sci-geosciences/viking/viking-1.2.2.ebuild,v 1.1 2011/12/03 11:07:45 grozin Exp $
51
52 EAPI=4
53
54 inherit base autotools
55
56 DESCRIPTION="GPS data editor and analyzer"
57 HOMEPAGE="http://viking.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 IUSE="gps nls"
63 KEYWORDS="~amd64 ~ppc ~x86"
64
65 COMMONDEPEND="dev-libs/expat
66 dev-libs/glib:2
67 net-misc/curl
68 sys-libs/zlib
69 x11-libs/gdk-pixbuf:2
70 x11-libs/gtk+:2
71 gps? ( >=sci-geosciences/gpsd-2.96 )
72 "
73 RDEPEND="${COMMONDEPEND}
74 sci-geosciences/gpsbabel
75 "
76 DEPEND="${COMMONDEPEND}
77 app-text/gnome-doc-utils
78 app-text/rarian
79 dev-libs/libxslt
80 dev-util/pkgconfig
81 sys-devel/gettext
82 "
83
84 DOCS=( README doc/GEOCODED-PHOTOS doc/GETTING-STARTED doc/GPSMAPPER )
85
86 PATCHES=(
87 "${FILESDIR}"/${PN}-gpsd-2.96.patch
88 "${FILESDIR}"/1.2.1-autoreconf.patch
89 )
90
91 src_prepare() {
92 base_src_prepare
93 eautoreconf
94 }
95
96 src_configure() {
97 econf \
98 --disable-deprecations \
99 --with-libcurl \
100 --with-expat \
101 --enable-google \
102 --enable-terraserver \
103 --enable-expedia \
104 --enable-openstreetmap \
105 --enable-bluemarble \
106 --enable-geonames \
107 --enable-geocaches \
108 --enable-spotmaps \
109 --disable-dem24k \
110 $(use_enable gps realtime-gps-tracking) \
111 $(use_enable nls)
112 }