From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2011A59CA9 for ; Wed, 30 Mar 2016 23:26:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71036E084C; Wed, 30 Mar 2016 23:26:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B9D9DE084C for ; Wed, 30 Mar 2016 23:26:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3518B340D4F for ; Wed, 30 Mar 2016 23:26:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3AE8F869 for ; Wed, 30 Mar 2016 23:26:29 +0000 (UTC) From: "Marc Schiffbauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marc Schiffbauer" Message-ID: <1459380346.5d813385c5d3433b41b814c65df1140c8600506a.mschiff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/opencpn/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-geosciences/opencpn/opencpn-4.0.0.ebuild X-VCS-Directories: sci-geosciences/opencpn/ X-VCS-Committer: mschiff X-VCS-Committer-Name: Marc Schiffbauer X-VCS-Revision: 5d813385c5d3433b41b814c65df1140c8600506a X-VCS-Branch: master Date: Wed, 30 Mar 2016 23:26:29 +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: eed88c70-9ad6-4dbb-aac9-f524eb6a04ee X-Archives-Hash: fc999b938aef7de47a9bacfea191c99c commit: 5d813385c5d3433b41b814c65df1140c8600506a Author: Marc Schiffbauer gentoo org> AuthorDate: Wed Mar 30 23:05:18 2016 +0000 Commit: Marc Schiffbauer gentoo org> CommitDate: Wed Mar 30 23:25:46 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d813385 sci-geosciences/opencpn: drop 4.0.0 Package-Manager: portage-2.2.28 sci-geosciences/opencpn/opencpn-4.0.0.ebuild | 67 ---------------------------- 1 file changed, 67 deletions(-) diff --git a/sci-geosciences/opencpn/opencpn-4.0.0.ebuild b/sci-geosciences/opencpn/opencpn-4.0.0.ebuild deleted file mode 100644 index 6298b6b..0000000 --- a/sci-geosciences/opencpn/opencpn-4.0.0.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -# TODO: add plugins - -## wmm_pi, World Magnetic Model (https://github.com/nohal/wmm_pi, GPL-2+) -#WMM_PLUGIN_PV="1.0" -#WMM_PLUGIN_PN="wmm_pi" -#WMM_PLUGIN_P="${WMM_PLUGIN_PN}-${WMM_PLUGIN_PV}" -#WMM_PLUGIN_URI="https://github.com/nohal/${WMM_PLUGIN_PN}/archive/${WMM_PLUGIN_PN}-v${WMM_PLUGIN_PV}.tar.gz" -#WMM_PLUGIN_WD="${WORKDIR}/plugins/${WMM_PLUGIN_PN}" - -WX_GTK_VER="2.8" -inherit cmake-utils wxwidgets - -DESCRIPTION="a free, open source software for marine navigation" -HOMEPAGE="http://opencpn.org/" -SRC_URI="https://github.com/OpenCPN/OpenCPN/archive/v${PV}.tar.gz -> ${P}.tar.gz -doc? ( https://launchpad.net/~opencpn/+archive/ubuntu/${PN}/+files/${PN}-doc_${PV}.orig.tar.xz ) -" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc gps opengl" - -RDEPEND=" - app-arch/bzip2 - dev-libs/tinyxml - media-libs/freetype:2 - media-libs/portaudio - sys-libs/zlib - opengl? ( virtual/opengl ) - x11-libs/gtk+:2 - x11-libs/wxGTK:2.8[X] - gps? ( >=sci-geosciences/gpsd-2.96-r1 ) -" -DEPEND="${RDEPEND} - sys-devel/gettext" - -S="${WORKDIR}/OpenCPN-${PV}" - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_use gps GPSD) - -DUSE_S57=ON - -DUSE_GARMINHOST=ON - ) - - cmake-utils_src_configure -} - -src_install() { - if use doc; then - dohtml -r "${S}"/../${PN}/doc/* - fi - cmake-utils_src_install -} - -pkg_postinst() { - if use doc; then - einfo "Documentation is available at file:///usr/share/doc/${P}/html/help_en_US.html" - fi -}