Gentoo Archives: gentoo-commits

From: Thomas Beierlein <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/js8call/
Date: Tue, 20 Apr 2021 16:15:58
Message-Id: 1618935332.3b343a19cb3d5beb9bf72eaf4dd8dba0ca2750a6.tomjbe@gentoo
1 commit: 3b343a19cb3d5beb9bf72eaf4dd8dba0ca2750a6
2 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 20 16:14:18 2021 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 20 16:15:32 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b343a19
7
8 media-radio/js8call: Prepare for >=media-libs/hamlib-4
9
10 Furthermore migrate away from cmake_utils
11
12 Package-Manager: Portage-3.0.18, Repoman-3.0.3
13 Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>
14
15 media-radio/js8call/js8call-2.2.0-r1.ebuild | 38 +++++++++++++++++++++++++++++
16 1 file changed, 38 insertions(+)
17
18 diff --git a/media-radio/js8call/js8call-2.2.0-r1.ebuild b/media-radio/js8call/js8call-2.2.0-r1.ebuild
19 new file mode 100644
20 index 00000000000..9537e009da3
21 --- /dev/null
22 +++ b/media-radio/js8call/js8call-2.2.0-r1.ebuild
23 @@ -0,0 +1,38 @@
24 +# Copyright 1999-2021 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +inherit cmake vcs-snapshot
29 +
30 +MY_P=${P/_/-}
31 +
32 +DESCRIPTION="Weak signal ham radio communication"
33 +HOMEPAGE="https://groups.io/g/js8call"
34 +SRC_URI="https://bitbucket.org/widefido/js8call/get/v${PV}-ga.tar.bz2 -> ${P}.tar.bz2"
35 +
36 +LICENSE="GPL-3"
37 +SLOT="0"
38 +KEYWORDS="~amd64"
39 +IUSE="doc"
40 +
41 +RDEPEND="dev-qt/qtcore:5
42 + dev-qt/qtgui:5
43 + dev-qt/qtmultimedia:5
44 + dev-qt/qtnetwork:5
45 + dev-qt/qtwidgets:5
46 + dev-qt/qtconcurrent:5
47 + dev-qt/qtserialport:5
48 + dev-qt/qtprintsupport:5
49 + virtual/libusb:1
50 + media-libs/portaudio
51 + sci-libs/fftw:3.0[threads,fortran]
52 + virtual/fortran
53 + app-text/asciidoc
54 + >=media-libs/hamlib-4
55 + doc? ( dev-ruby/asciidoctor )"
56 +DEPEND="${RDEPEND}"
57 +
58 +src_install() {
59 + cmake_src_install
60 + rm "${D}"/usr/bin/rigctl{,d}-local || die
61 +}