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 F1FB71382C5 for ; Sun, 21 Jan 2018 07:34:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CAE0E0894; Sun, 21 Jan 2018 07:34:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 EC297E0894 for ; Sun, 21 Jan 2018 07:34:03 +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 772C1335C89 for ; Sun, 21 Jan 2018 07:34:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DBF3D1BD for ; Sun, 21 Jan 2018 07:33:59 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1516520029.1b78f2d7b21e165f4bd75bc253d855194d638b46.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/viking/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-geosciences/viking/viking-1.6.2.ebuild X-VCS-Directories: sci-geosciences/viking/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 1b78f2d7b21e165f4bd75bc253d855194d638b46 X-VCS-Branch: master Date: Sun, 21 Jan 2018 07:33:59 +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-Archives-Salt: 49fb419c-23d9-454a-85af-9549b76c87c4 X-Archives-Hash: 5f10f5784ccb2e10022ceff70652137f commit: 1b78f2d7b21e165f4bd75bc253d855194d638b46 Author: Hans de Graaff gentoo org> AuthorDate: Sun Jan 21 07:33:49 2018 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Jan 21 07:33:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b78f2d7 sci-geosciences/viking: cleanup Package-Manager: Portage-2.3.19, Repoman-2.3.6 sci-geosciences/viking/viking-1.6.2.ebuild | 74 ------------------------------ 1 file changed, 74 deletions(-) diff --git a/sci-geosciences/viking/viking-1.6.2.ebuild b/sci-geosciences/viking/viking-1.6.2.ebuild deleted file mode 100644 index a87d9ea127f..00000000000 --- a/sci-geosciences/viking/viking-1.6.2.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils - -DESCRIPTION="GPS data editor and analyzer" -HOMEPAGE="https://sourceforge.net/projects/viking/" -IUSE="doc +exif libexif gps +magic mapnik nls sqlite" -SRC_URI=" - mirror://sourceforge/${PN}/${P}.tar.bz2 - doc? ( mirror://sourceforge/${PN}/${PN}.pdf )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" - -COMMONDEPEND=" - app-arch/bzip2 - dev-libs/expat - dev-libs/glib:2 - net-misc/curl - sys-libs/zlib - x11-libs/gdk-pixbuf:2 - x11-libs/gtk+:2 - gps? ( >=sci-geosciences/gpsd-2.96 ) - exif? ( libexif? ( media-libs/libexif ) !libexif? ( media-libs/gexiv2 ) ) - magic? ( sys-apps/file ) - mapnik? ( sci-geosciences/mapnik ) - sqlite? ( dev-db/sqlite:3 ) -" -RDEPEND="${COMMONDEPEND} - sci-geosciences/gpsbabel -" -DEPEND="${COMMONDEPEND} - app-text/gnome-doc-utils - dev-util/intltool - dev-util/gtk-doc-am - app-text/rarian - dev-libs/libxslt - virtual/pkgconfig - sys-devel/gettext -" - -src_configure() { - econf \ - --disable-deprecations \ - --with-libcurl \ - --with-expat \ - --enable-google \ - --enable-terraserver \ - --enable-expedia \ - --enable-openstreetmap \ - --enable-bluemarble \ - --enable-geonames \ - --enable-geocaches \ - --disable-dem24k \ - $(use_enable exif geotag) \ - $(use_with libexif ) \ - $(use_enable gps realtime-gps-tracking) \ - $(use_enable magic) \ - $(use_enable mapnik) \ - $(use_enable nls) \ - $(use_enable sqlite mbtiles ) -} - -src_install() { - default - if use doc; then - insinto /usr/share/doc/${PF} - doins "${DISTDIR}"/${PN}.pdf - fi -}