Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/viking/
Date: Tue, 22 Jan 2019 16:28:09
Message-Id: 1548174457.5595e48d823ba21e0be7997943f1b98464405ec9.graaff@gentoo
1 commit: 5595e48d823ba21e0be7997943f1b98464405ec9
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 22 16:17:16 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 22 16:27:37 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5595e48d
7
8 sci-geosciences/viking: cleanup
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 sci-geosciences/viking/viking-1.6.2-r1.ebuild | 84 ---------------------------
14 1 file changed, 84 deletions(-)
15
16 diff --git a/sci-geosciences/viking/viking-1.6.2-r1.ebuild b/sci-geosciences/viking/viking-1.6.2-r1.ebuild
17 deleted file mode 100644
18 index 724991cc58a..00000000000
19 --- a/sci-geosciences/viking/viking-1.6.2-r1.ebuild
20 +++ /dev/null
21 @@ -1,84 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit gnome2-utils
28 -
29 -DESCRIPTION="GPS data editor and analyzer"
30 -HOMEPAGE="https://sourceforge.net/projects/viking/"
31 -IUSE="doc +exif libexif gps +magic mapnik nls sqlite"
32 -SRC_URI="
33 - mirror://sourceforge/${PN}/${P}.tar.bz2
34 - doc? ( mirror://sourceforge/${PN}/${PN}.pdf )"
35 -
36 -LICENSE="GPL-2"
37 -SLOT="0"
38 -KEYWORDS="~amd64 ~x86"
39 -
40 -COMMONDEPEND="
41 - app-arch/bzip2
42 - dev-libs/expat
43 - dev-libs/glib:2
44 - net-misc/curl
45 - sys-libs/zlib
46 - x11-libs/gdk-pixbuf:2
47 - x11-libs/gtk+:2
48 - gps? ( >=sci-geosciences/gpsd-2.96 )
49 - exif? ( libexif? ( media-libs/libexif ) !libexif? ( media-libs/gexiv2 ) )
50 - magic? ( sys-apps/file )
51 - mapnik? ( sci-geosciences/mapnik )
52 - sqlite? ( dev-db/sqlite:3 )
53 -"
54 -RDEPEND="${COMMONDEPEND}
55 - sci-geosciences/gpsbabel
56 -"
57 -DEPEND="${COMMONDEPEND}
58 - app-text/gnome-doc-utils
59 - dev-util/intltool
60 - dev-util/gtk-doc-am
61 - app-text/rarian
62 - dev-libs/libxslt
63 - virtual/pkgconfig
64 - sys-devel/gettext
65 -"
66 -
67 -src_configure() {
68 - econf \
69 - --disable-deprecations \
70 - --with-libcurl \
71 - --with-expat \
72 - --enable-google \
73 - --enable-terraserver \
74 - --enable-expedia \
75 - --enable-openstreetmap \
76 - --enable-bluemarble \
77 - --enable-geonames \
78 - --enable-geocaches \
79 - --disable-dem24k \
80 - $(use_enable exif geotag) \
81 - $(use_with libexif ) \
82 - $(use_enable gps realtime-gps-tracking) \
83 - $(use_enable magic) \
84 - $(use_enable mapnik) \
85 - $(use_enable nls) \
86 - $(use_enable sqlite mbtiles )
87 -}
88 -
89 -src_install() {
90 - default
91 - if use doc; then
92 - insinto /usr/share/doc/${PF}
93 - doins "${DISTDIR}"/${PN}.pdf
94 - fi
95 -}
96 -
97 -pkg_postinst() {
98 - xdg_desktop_database_update
99 - gnome2_icon_cache_update
100 -}
101 -
102 -pkg_postrm() {
103 - xdg_desktop_database_update
104 - gnome2_icon_cache_update
105 -}