summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-06-29 10:50:17 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2019-06-29 10:50:36 +0200
commit48e9396f3612070548b1786598b9464e9bff0009 (patch)
tree2fa369e448243f7fc90e44d111a22fdb5d30d2a5 /sci-geosciences
parentsci-geosciences/gpscorrelate: EAPI-7 bump, fix build w/ exiv2-0.27.1 (diff)
downloadgentoo-48e9396f3612070548b1786598b9464e9bff0009.tar.gz
gentoo-48e9396f3612070548b1786598b9464e9bff0009.tar.bz2
gentoo-48e9396f3612070548b1786598b9464e9bff0009.zip
sci-geosciences/gpscorrelate: Drop 1.6.1
Closes: https://bugs.gentoo.org/685926 Package-Manager: Portage-2.3.67, Repoman-2.3.16 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-geosciences')
-rw-r--r--sci-geosciences/gpscorrelate/gpscorrelate-1.6.1.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/sci-geosciences/gpscorrelate/gpscorrelate-1.6.1.ebuild b/sci-geosciences/gpscorrelate/gpscorrelate-1.6.1.ebuild
deleted file mode 100644
index 07204797db36..000000000000
--- a/sci-geosciences/gpscorrelate/gpscorrelate-1.6.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Tool for adjusting EXIF tags of your photos with a recorded GPS trace"
-HOMEPAGE="https://github.com/freefoote/gpscorrelate"
-SRC_URI="http://freefoote.dview.net/linux/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86"
-IUSE="doc gtk"
-
-RDEPEND="
- dev-libs/libxml2:2
- media-gfx/exiv2:=
- gtk? ( x11-libs/gtk+:2 )
-"
-DEPEND="${RDEPEND}
- app-text/docbook-xml-dtd:4.2
- dev-libs/libxslt
- virtual/pkgconfig
-"
-
-PATCHES=( "${FILESDIR}/${PN}-1.6.1-makefile.patch" )
-
-src_compile() {
- tc-export CC CXX
- local opts="gpscorrelate gpscorrelate.1"
- use gtk && opts+=" gpscorrelate-gui BUILD_GUI=1"
- emake ${opts}
-}
-
-src_install() {
- dobin ${PN}
- if use gtk; then
- dobin ${PN}-gui
- doicon ${PN}-gui.svg
- domenu ${PN}.desktop
- fi
- if use doc; then
- dohtml doc/*
- fi
- doman ${PN}.1
-}