Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/opencpn-plugin-weather_routing/
Date: Sun, 25 Oct 2015 17:38:32
Message-Id: 1445794536.b6b26cf45a8701d8b56171e8bc43f0f52aae54ee.pacho@gentoo
1 commit: b6b26cf45a8701d8b56171e8bc43f0f52aae54ee
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 25 17:29:32 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 25 17:35:36 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6b26cf4
7
8 sci-geosciences/opencpn-plugin-weather_routing: Support wxGTK:3.0
9
10 Package-Manager: portage-2.2.23
11
12 .../opencpn-plugin-weather_routing-1.2-r1.ebuild | 35 ++++++++++++++++++++++
13 1 file changed, 35 insertions(+)
14
15 diff --git a/sci-geosciences/opencpn-plugin-weather_routing/opencpn-plugin-weather_routing-1.2-r1.ebuild b/sci-geosciences/opencpn-plugin-weather_routing/opencpn-plugin-weather_routing-1.2-r1.ebuild
16 new file mode 100644
17 index 0000000..9fd942f
18 --- /dev/null
19 +++ b/sci-geosciences/opencpn-plugin-weather_routing/opencpn-plugin-weather_routing-1.2-r1.ebuild
20 @@ -0,0 +1,35 @@
21 +# Copyright 1999-2015 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +
27 +WX_GTK_VER="3.0"
28 +inherit cmake-utils wxwidgets
29 +
30 +MY_PN="weather_routing_pi"
31 +
32 +DESCRIPTION="Weather Routing Plugin for OpenCPN"
33 +HOMEPAGE="http://opencpn.org/ocpn/downloadplugins"
34 +SRC_URI="
35 + https://github.com/seandepagnier/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
36 +"
37 +
38 +LICENSE="GPL-3+"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~x86"
41 +IUSE=""
42 +
43 +RDEPEND="
44 + >=sci-geosciences/opencpn-4.0.0
45 + sys-devel/gettext
46 + x11-libs/wxGTK:${WX_GTK_VER}
47 +"
48 +DEPEND="${RDEPEND}"
49 +
50 +S="${WORKDIR}/${MY_PN}-${PV}"
51 +
52 +src_prepare() {
53 + need-wxwidgets unicode
54 + cmake-utils_src_prepare
55 +}