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-weather_routing/
Date: Tue, 27 Dec 2016 18:07:32
Message-Id: 1482862037.e9dbe470a0f03bb2f633fe3ccdf9338beb345607.mschiff@gentoo
1 commit: e9dbe470a0f03bb2f633fe3ccdf9338beb345607
2 Author: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 27 18:05:36 2016 +0000
4 Commit: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 27 18:07:17 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9dbe470
7
8 sci-geosciences/opencpn-plugin-weather_routing: add new version
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 .../opencpn-plugin-weather_routing/Manifest | 1 +
13 .../opencpn-plugin-weather_routing-1.10.1.ebuild | 38 ++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/sci-geosciences/opencpn-plugin-weather_routing/Manifest b/sci-geosciences/opencpn-plugin-weather_routing/Manifest
17 index ffe9792..4c177f2 100644
18 --- a/sci-geosciences/opencpn-plugin-weather_routing/Manifest
19 +++ b/sci-geosciences/opencpn-plugin-weather_routing/Manifest
20 @@ -1 +1,2 @@
21 +DIST opencpn-plugin-weather_routing-1.10.1.tar.gz 845403 SHA256 1ac5f51db969f2806a54ab82d062cdef748e4f77835b2f63aba8f8633490c53f SHA512 052377bc2b962b131640ecdb2e688b97325a7935f60c68652be6bdb07486278d03d09ec2c8b4b1547e5eeab1ea7613890604c800a91f185babe5bfb5221a7337 WHIRLPOOL e3cca0cbfc967da89ecc50e716f958735169912f9e520e485c4f55a2524d91f77634e620afa87f83a971fd95f4c6795f068748a3794bd27250c6277db6faa0e2
22 DIST opencpn-plugin-weather_routing-1.2.tar.gz 615959 SHA256 8b86c4f86092d6fcac8138c8699cf1f093ae67016caad8960222f26659b8dcc7 SHA512 99c9df317a79e89664ca45a8e3fa02a5f2c06a731d5208260d415f6acd4506fba283d4e4758a5deff3b331546ca8893282a287b32fceebdf27f0537a6d99944b WHIRLPOOL 0018e772659482f70f132a2216f5d17fb8c56418f0e7195bfe7eb791be9964d5c829fdf95258acf7d78e41723b05e3c5bf5dd57d19703f6cbb5271a31635b76a
23
24 diff --git a/sci-geosciences/opencpn-plugin-weather_routing/opencpn-plugin-weather_routing-1.10.1.ebuild b/sci-geosciences/opencpn-plugin-weather_routing/opencpn-plugin-weather_routing-1.10.1.ebuild
25 new file mode 100644
26 index 00000000..ef63f49
27 --- /dev/null
28 +++ b/sci-geosciences/opencpn-plugin-weather_routing/opencpn-plugin-weather_routing-1.10.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="weather_routing_pi"
38 +if [[ ${PV} == "9999" ]] ; then
39 + EGIT_REPO_URI="https://github.com/seandepagnier/${MY_PN}.git"
40 + inherit git-r3 cmake-utils wxwidgets
41 + KEYWORDS=""
42 +else
43 + SRC_URI="
44 + https://github.com/seandepagnier/${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="Weather Routing Plugin for OpenCPN"
52 +HOMEPAGE="https://github.com/seandepagnier/weather_routing_pi/"
53 +
54 +LICENSE="GPL-3+"
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 +}