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-wmm/
Date: Sun, 25 Oct 2015 17:42:18
Message-Id: 1445794924.66941114d4379bdaafb5c4fab0c8d0b8d2fd9ad5.pacho@gentoo
1 commit: 66941114d4379bdaafb5c4fab0c8d0b8d2fd9ad5
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 25 17:42:04 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 25 17:42:04 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66941114
7
8 sci-geosciences/opencpn-plugin-wmm: Support wxGTK:3.0
9
10 Package-Manager: portage-2.2.23
11
12 .../opencpn-plugin-wmm-1.0-r1.ebuild | 33 ++++++++++++++++++++++
13 1 file changed, 33 insertions(+)
14
15 diff --git a/sci-geosciences/opencpn-plugin-wmm/opencpn-plugin-wmm-1.0-r1.ebuild b/sci-geosciences/opencpn-plugin-wmm/opencpn-plugin-wmm-1.0-r1.ebuild
16 new file mode 100644
17 index 0000000..6614ed2
18 --- /dev/null
19 +++ b/sci-geosciences/opencpn-plugin-wmm/opencpn-plugin-wmm-1.0-r1.ebuild
20 @@ -0,0 +1,33 @@
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="wmm_pi"
31 +
32 +DESCRIPTION="World Magnetic Model Plugin for OpenCPN"
33 +HOMEPAGE="http://opencpn.org/ocpn/downloadplugins"
34 +SRC_URI="https://github.com/nohal/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
35 +
36 +LICENSE="GPL-2+"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~x86"
39 +IUSE=""
40 +
41 +RDEPEND="
42 + >=sci-geosciences/opencpn-4.0.0
43 + sys-devel/gettext
44 + x11-libs/wxGTK:${WX_GTK_VER}
45 +"
46 +DEPEND="${RDEPEND}"
47 +
48 +S="${WORKDIR}/${MY_PN}-${PV}"
49 +
50 +src_prepare() {
51 + need-wxwidgets unicode
52 + cmake-utils_src_prepare
53 +}