commit: 9f71424f5319d786250a4cc51acd09badbd3873a Author: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org> AuthorDate: Thu Dec 29 21:55:51 2016 +0000 Commit: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org> CommitDate: Fri Dec 30 18:00:26 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f71424f
sci-geosciences/opencpn-plugin-dr: added new plugin Package-Manager: Portage-2.3.3, Repoman-2.3.1 sci-geosciences/opencpn-plugin-dr/metadata.xml | 15 +++++++++ .../opencpn-plugin-dr-9999.ebuild | 38 ++++++++++++++++++++++ 2 files changed, 53 insertions(+) diff --git a/sci-geosciences/opencpn-plugin-dr/metadata.xml b/sci-geosciences/opencpn-plugin-dr/metadata.xml new file mode 100644 index 00000000..40869ff --- /dev/null +++ b/sci-geosciences/opencpn-plugin-dr/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Marc Schiffbauer</name> + </maintainer> + <maintainer type="project"> + <email>[email protected]</email> + <name>Gentoo Geosciences Project</name> + </maintainer> + <upstream> + <remote-id type="github">Rasbats/DR_pi</remote-id> + </upstream> +</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-dr/opencpn-plugin-dr-9999.ebuild b/sci-geosciences/opencpn-plugin-dr/opencpn-plugin-dr-9999.ebuild new file mode 100644 index 00000000..dc829f7 --- /dev/null +++ b/sci-geosciences/opencpn-plugin-dr/opencpn-plugin-dr-9999.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +WX_GTK_VER="3.0" +MY_PN="DR_pi" +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/Rasbats/${MY_PN}.git" + inherit git-r3 cmake-utils wxwidgets + KEYWORDS="" +else + SRC_URI=" + https://github.com/Rasbats/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz + " + inherit cmake-utils wxwidgets + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}/${MY_PN}-${PV}" +fi + +DESCRIPTION="Dead Reckoning Positions Plugin for OpenCPN" +HOMEPAGE="https://github.com/Rasbats/DR_pi" + +LICENSE="GPL-2+" +SLOT="0" +IUSE="" + +RDEPEND=" + x11-libs/wxGTK:${WX_GTK_VER} + >=sci-geosciences/opencpn-4.2.0 + sys-devel/gettext +" +DEPEND="${RDEPEND}" +src_prepare() { + need-wxwidgets unicode + cmake-utils_src_prepare +}
