diff options
author | Marc Schiffbauer <mschiff@gentoo.org> | 2016-12-29 22:55:51 +0100 |
---|---|---|
committer | Marc Schiffbauer <mschiff@gentoo.org> | 2016-12-30 19:00:26 +0100 |
commit | 9f71424f5319d786250a4cc51acd09badbd3873a (patch) | |
tree | 3bdbd0fe52b849f88938d2b0121814d8bb486f39 /sci-geosciences/opencpn-plugin-dr | |
parent | sci-geosciences/opencpn-plugin-ocpndebugger: bump version (diff) | |
download | gentoo-9f71424f5319d786250a4cc51acd09badbd3873a.tar.gz gentoo-9f71424f5319d786250a4cc51acd09badbd3873a.tar.bz2 gentoo-9f71424f5319d786250a4cc51acd09badbd3873a.zip |
sci-geosciences/opencpn-plugin-dr: added new plugin
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'sci-geosciences/opencpn-plugin-dr')
-rw-r--r-- | sci-geosciences/opencpn-plugin-dr/metadata.xml | 15 | ||||
-rw-r--r-- | sci-geosciences/opencpn-plugin-dr/opencpn-plugin-dr-9999.ebuild | 38 |
2 files changed, 53 insertions, 0 deletions
diff --git a/sci-geosciences/opencpn-plugin-dr/metadata.xml b/sci-geosciences/opencpn-plugin-dr/metadata.xml new file mode 100644 index 000000000000..40869ffafb0a --- /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>mschiff@gentoo.org</email> + <name>Marc Schiffbauer</name> + </maintainer> + <maintainer type="project"> + <email>sci-geosciences@gentoo.org</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 000000000000..dc829f7d43e6 --- /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 +} |