Gentoo Archives: gentoo-commits

From: Marc Schiffbauer <mschiff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/opencpn-plugin-dr/
Date: Fri, 30 Dec 2016 18:00:53
Message-Id: 1483120827.358c77c76babba8075d574b622b2463869d887f3.mschiff@gentoo
1 commit: 358c77c76babba8075d574b622b2463869d887f3
2 Author: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 30 14:21:02 2016 +0000
4 Commit: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 30 18:00:27 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=358c77c7
7
8 sci-geosciences/opencpn-plugin-dr: added version 1.1
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 sci-geosciences/opencpn-plugin-dr/Manifest | 1 +
13 .../opencpn-plugin-dr/opencpn-plugin-dr-1.1.ebuild | 38 ++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/sci-geosciences/opencpn-plugin-dr/Manifest b/sci-geosciences/opencpn-plugin-dr/Manifest
17 new file mode 100644
18 index 00000000..984e728
19 --- /dev/null
20 +++ b/sci-geosciences/opencpn-plugin-dr/Manifest
21 @@ -0,0 +1 @@
22 +DIST opencpn-plugin-dr-1.1.tar.gz 133693 SHA256 57b42b577228e105b22b58b66148527ae62eb119d3f35a5c688360ed251b64d5 SHA512 2a953c7a8a491975c2b14e877364cfa736d2c410ea77bb4e0b18cf3bb3b04b19c2fcbc9debd513182f95002b483e689c4e21c30d87474e319bae7d2d840254f1 WHIRLPOOL db083b87f17b3fbe5895e9ccee58b2d42283653832731baeaffb997a63ba9e1e003b9efe60c58b3ea640bfdb88ec495030009a22e0962898dcc9cfbdc9286889
23
24 diff --git a/sci-geosciences/opencpn-plugin-dr/opencpn-plugin-dr-1.1.ebuild b/sci-geosciences/opencpn-plugin-dr/opencpn-plugin-dr-1.1.ebuild
25 new file mode 100644
26 index 00000000..80538b7
27 --- /dev/null
28 +++ b/sci-geosciences/opencpn-plugin-dr/opencpn-plugin-dr-1.1.ebuild
29 @@ -0,0 +1,38 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +WX_GTK_VER="3.0"
37 +MY_PN="DR_pi"
38 +if [[ ${PV} == "9999" ]] ; then
39 + EGIT_REPO_URI="https://github.com/Rasbats/${MY_PN}.git"
40 + inherit git-r3 cmake-utils wxwidgets
41 + KEYWORDS=""
42 +else
43 + SRC_URI="
44 + https://github.com/Rasbats/${MY_PN}/archive/V${PV}.tar.gz -> ${P}.tar.gz
45 + "
46 + inherit cmake-utils wxwidgets
47 + KEYWORDS="~amd64 ~x86"
48 + S="${WORKDIR}/${MY_PN}-${PV}"
49 +fi
50 +
51 +DESCRIPTION="Dead Reckoning Positions Plugin for OpenCPN"
52 +HOMEPAGE="https://github.com/Rasbats/DR_pi"
53 +
54 +LICENSE="GPL-2+"
55 +SLOT="0"
56 +IUSE=""
57 +
58 +RDEPEND="
59 + x11-libs/wxGTK:${WX_GTK_VER}
60 + >=sci-geosciences/opencpn-4.2.0
61 + sys-devel/gettext
62 +"
63 +DEPEND="${RDEPEND}"
64 +src_prepare() {
65 + need-wxwidgets unicode
66 + cmake-utils_src_prepare
67 +}