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.4.1.ebuild
Date: Mon, 01 Jul 2013 11:09:00
Message-Id: 20130701110856.B75FC2171C@flycatcher.gentoo.org
1 grozin 13/07/01 11:08:56
2
3 Modified: ChangeLog
4 Added: viking-1.4.1.ebuild
5 Log:
6 Version bump, closing #438316
7
8 (Portage version: 2.2.0_alpha185/cvs/Linux i686, signed Manifest commit with key 0x3AFFCE974D34BD8C!)
9
10 Revision Changes Path
11 1.23 sci-geosciences/viking/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/viking/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/viking/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/viking/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/viking/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 31 May 2012 14:59:43 -0000 1.22
24 +++ ChangeLog 1 Jul 2013 11:08:56 -0000 1.23
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-geosciences/viking
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/viking/ChangeLog,v 1.22 2012/05/31 14:59:43 scarabeus Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/viking/ChangeLog,v 1.23 2013/07/01 11:08:56 grozin Exp $
31 +
32 +*viking-1.4.1 (01 Jul 2013)
33 +
34 + 01 Jul 2013; Andrey Grozin <grozin@g.o> +viking-1.4.1.ebuild:
35 + Version bump, closing #438316
36
37 *viking-1.3 (31 May 2012)
38
39
40
41
42 1.1 sci-geosciences/viking/viking-1.4.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/viking/viking-1.4.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/viking/viking-1.4.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: viking-1.4.1.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-geosciences/viking/viking-1.4.1.ebuild,v 1.1 2013/07/01 11:08:56 grozin Exp $
52
53 EAPI=5
54
55 DESCRIPTION="GPS data editor and analyzer"
56 HOMEPAGE="http://viking.sourceforge.net/"
57 IUSE="doc gps nls"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
59 doc? ( mirror://sourceforge/${PN}/${PN}.pdf )"
60
61 LICENSE="GPL-2"
62 SLOT="0"
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 dev-util/intltool
79 dev-util/gtk-doc-am
80 app-text/rarian
81 dev-libs/libxslt
82 virtual/pkgconfig
83 sys-devel/gettext
84 "
85
86 src_configure() {
87 econf \
88 --disable-deprecations \
89 --with-libcurl \
90 --with-expat \
91 --enable-google \
92 --enable-terraserver \
93 --enable-expedia \
94 --enable-openstreetmap \
95 --enable-bluemarble \
96 --enable-geonames \
97 --enable-geocaches \
98 --enable-spotmaps \
99 --disable-dem24k \
100 $(use_enable gps realtime-gps-tracking) \
101 $(use_enable nls)
102 }
103
104 src_install() {
105 default
106 if use doc; then
107 insinto /usr/share/doc/${PF}
108 doins "${DISTDIR}"/${PN}.pdf
109 fi
110 }