Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/gpscorrelate/
Date: Sat, 29 Jun 2019 08:50:57
Message-Id: 1561798236.48e9396f3612070548b1786598b9464e9bff0009.asturm@gentoo
1 commit: 48e9396f3612070548b1786598b9464e9bff0009
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 29 08:50:17 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 29 08:50:36 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48e9396f
7
8 sci-geosciences/gpscorrelate: Drop 1.6.1
9
10 Closes: https://bugs.gentoo.org/685926
11 Package-Manager: Portage-2.3.67, Repoman-2.3.16
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 .../gpscorrelate/gpscorrelate-1.6.1.ebuild | 48 ----------------------
15 1 file changed, 48 deletions(-)
16
17 diff --git a/sci-geosciences/gpscorrelate/gpscorrelate-1.6.1.ebuild b/sci-geosciences/gpscorrelate/gpscorrelate-1.6.1.ebuild
18 deleted file mode 100644
19 index 07204797db3..00000000000
20 --- a/sci-geosciences/gpscorrelate/gpscorrelate-1.6.1.ebuild
21 +++ /dev/null
22 @@ -1,48 +0,0 @@
23 -# Copyright 1999-2017 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=6
27 -
28 -inherit eutils toolchain-funcs
29 -
30 -DESCRIPTION="Tool for adjusting EXIF tags of your photos with a recorded GPS trace"
31 -HOMEPAGE="https://github.com/freefoote/gpscorrelate"
32 -SRC_URI="http://freefoote.dview.net/linux/${P}.tar.gz"
33 -
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -KEYWORDS="~amd64 ~hppa ~x86"
37 -IUSE="doc gtk"
38 -
39 -RDEPEND="
40 - dev-libs/libxml2:2
41 - media-gfx/exiv2:=
42 - gtk? ( x11-libs/gtk+:2 )
43 -"
44 -DEPEND="${RDEPEND}
45 - app-text/docbook-xml-dtd:4.2
46 - dev-libs/libxslt
47 - virtual/pkgconfig
48 -"
49 -
50 -PATCHES=( "${FILESDIR}/${PN}-1.6.1-makefile.patch" )
51 -
52 -src_compile() {
53 - tc-export CC CXX
54 - local opts="gpscorrelate gpscorrelate.1"
55 - use gtk && opts+=" gpscorrelate-gui BUILD_GUI=1"
56 - emake ${opts}
57 -}
58 -
59 -src_install() {
60 - dobin ${PN}
61 - if use gtk; then
62 - dobin ${PN}-gui
63 - doicon ${PN}-gui.svg
64 - domenu ${PN}.desktop
65 - fi
66 - if use doc; then
67 - dohtml doc/*
68 - fi
69 - doman ${PN}.1
70 -}