From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B83181382C5 for ; Tue, 20 Apr 2021 16:15:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB4E4E0858; Tue, 20 Apr 2021 16:15:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AEDE3E0858 for ; Tue, 20 Apr 2021 16:15:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5784D335D96 for ; Tue, 20 Apr 2021 16:15:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B8F5859C for ; Tue, 20 Apr 2021 16:15:53 +0000 (UTC) From: "Thomas Beierlein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Beierlein" Message-ID: <1618935332.3b343a19cb3d5beb9bf72eaf4dd8dba0ca2750a6.tomjbe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/js8call/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-radio/js8call/js8call-2.2.0-r1.ebuild X-VCS-Directories: media-radio/js8call/ X-VCS-Committer: tomjbe X-VCS-Committer-Name: Thomas Beierlein X-VCS-Revision: 3b343a19cb3d5beb9bf72eaf4dd8dba0ca2750a6 X-VCS-Branch: master Date: Tue, 20 Apr 2021 16:15:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f91f7fae-f325-4963-bb5b-e46b8f4226ed X-Archives-Hash: c93c7f678b6ab38a4715cf8b59c6e37b commit: 3b343a19cb3d5beb9bf72eaf4dd8dba0ca2750a6 Author: Thomas Beierlein gentoo org> AuthorDate: Tue Apr 20 16:14:18 2021 +0000 Commit: Thomas Beierlein gentoo org> CommitDate: Tue Apr 20 16:15:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b343a19 media-radio/js8call: Prepare for >=media-libs/hamlib-4 Furthermore migrate away from cmake_utils Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Thomas Beierlein gentoo.org> media-radio/js8call/js8call-2.2.0-r1.ebuild | 38 +++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/media-radio/js8call/js8call-2.2.0-r1.ebuild b/media-radio/js8call/js8call-2.2.0-r1.ebuild new file mode 100644 index 00000000000..9537e009da3 --- /dev/null +++ b/media-radio/js8call/js8call-2.2.0-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit cmake vcs-snapshot + +MY_P=${P/_/-} + +DESCRIPTION="Weak signal ham radio communication" +HOMEPAGE="https://groups.io/g/js8call" +SRC_URI="https://bitbucket.org/widefido/js8call/get/v${PV}-ga.tar.bz2 -> ${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc" + +RDEPEND="dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtmultimedia:5 + dev-qt/qtnetwork:5 + dev-qt/qtwidgets:5 + dev-qt/qtconcurrent:5 + dev-qt/qtserialport:5 + dev-qt/qtprintsupport:5 + virtual/libusb:1 + media-libs/portaudio + sci-libs/fftw:3.0[threads,fortran] + virtual/fortran + app-text/asciidoc + >=media-libs/hamlib-4 + doc? ( dev-ruby/asciidoctor )" +DEPEND="${RDEPEND}" + +src_install() { + cmake_src_install + rm "${D}"/usr/bin/rigctl{,d}-local || die +}