From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BEDB1138334 for ; Sat, 29 Jun 2019 08:50:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E767AE07AE; Sat, 29 Jun 2019 08:50:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CCB9BE07AE for ; Sat, 29 Jun 2019 08:50:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 31235346C90 for ; Sat, 29 Jun 2019 08:50:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5FC3B62D for ; Sat, 29 Jun 2019 08:50:53 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1561798236.48e9396f3612070548b1786598b9464e9bff0009.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/gpscorrelate/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-geosciences/gpscorrelate/gpscorrelate-1.6.1.ebuild X-VCS-Directories: sci-geosciences/gpscorrelate/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 48e9396f3612070548b1786598b9464e9bff0009 X-VCS-Branch: master Date: Sat, 29 Jun 2019 08:50:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8060d5d0-59dc-4ae9-aadb-9317b502766b X-Archives-Hash: 4b94d11ed5e16f0709bcbcdb857904c7 commit: 48e9396f3612070548b1786598b9464e9bff0009 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jun 29 08:50:17 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jun 29 08:50:36 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48e9396f 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 gentoo.org> .../gpscorrelate/gpscorrelate-1.6.1.ebuild | 48 ---------------------- 1 file changed, 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 07204797db3..00000000000 --- 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 -}