public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Thomas Beierlein" <tomjbe@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/wsjtx/
Date: Sat, 28 Jan 2023 18:57:40 +0000 (UTC)	[thread overview]
Message-ID: <1674932221.1e5e5e6541dbf2ba842ea8cadc47dec1f82c41e4.tomjbe@gentoo> (raw)

commit:     1e5e5e6541dbf2ba842ea8cadc47dec1f82c41e4
Author:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 28 18:55:37 2023 +0000
Commit:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
CommitDate: Sat Jan 28 18:57:01 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e5e5e65

media-radio/wsjtx: add 2.6.1

Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>

 media-radio/wsjtx/Manifest           |  1 +
 media-radio/wsjtx/wsjtx-2.6.1.ebuild | 78 ++++++++++++++++++++++++++++++++++++
 2 files changed, 79 insertions(+)

diff --git a/media-radio/wsjtx/Manifest b/media-radio/wsjtx/Manifest
index c907ecb10224..5ea6098a49dd 100644
--- a/media-radio/wsjtx/Manifest
+++ b/media-radio/wsjtx/Manifest
@@ -1 +1,2 @@
 DIST wsjtx-2.5.4.tgz 25369854 BLAKE2B 674cb64f8f30114dd4e857181502e39d5a61fdb487ef503fd945d1e91853f8aab4dead7c2e9daf4ed2863b07b9760ceec3b6c79c30b64c0c2e3115efc1e20be6 SHA512 c4092d03af3346f0244d942c3db693f5d2c1ed7a2ec9077ded039b7d162e15abdaf09dcb9997d1833d25c366eb03a0dab6114313d423e7e2c9ff37d965261efc
+DIST wsjtx-2.6.1.tgz 25624658 BLAKE2B 16181ea18611bf1bfaae78e4c5bf000d53cdb4401d1d07a7bd96a041c6da3bc385df71ddabb13a191fa32bd5579c7a330c2dff9a7b3e438222fd8a4ebb44412c SHA512 0f151c10b75798ab28a01604b08981f399d612135b7e9ddc3e66f9121fd49c97bb9508ce649e342791705ee5e1247f8e461a31afa871ddd46da1cf7fd5826c74

diff --git a/media-radio/wsjtx/wsjtx-2.6.1.ebuild b/media-radio/wsjtx/wsjtx-2.6.1.ebuild
new file mode 100644
index 000000000000..5d8fbb34179b
--- /dev/null
+++ b/media-radio/wsjtx/wsjtx-2.6.1.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake edos2unix flag-o-matic
+
+DESCRIPTION="Weak signal ham radio communication"
+HOMEPAGE="https://physics.princeton.edu//pulsar/K1JT/wsjtx.html"
+SRC_URI="mirror://sourceforge/wsjt/${P}.tgz"
+S=${WORKDIR}/wsjtx
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+	dev-libs/boost:=[nls,python]
+	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/qtsql:5
+	dev-qt/qttest:5
+	dev-qt/qtprintsupport:5
+	virtual/libusb:1
+	>=media-libs/hamlib-4.0:=
+	media-libs/portaudio
+	sci-libs/fftw:3.0[threads,fortran]
+	virtual/fortran
+	app-text/asciidoc
+	doc? ( dev-ruby/asciidoctor )"
+DEPEND="${RDEPEND}"
+BDEPEND="dev-qt/linguist-tools"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-2.2.0-werror.patch"
+	"${FILESDIR}/${PN}-2.3.0-drop-docs.patch"
+	"${FILESDIR}/${PN}-clang.patch"
+)
+
+DOCS=( AUTHORS BUGS NEWS README THANKS )
+
+src_unpack() {
+	unpack ${A}
+	unpack "${WORKDIR}/${P/_/-}/src/wsjtx.tgz"
+}
+
+src_prepare() {
+	edos2unix "${S}/message_aggregator.desktop"
+	edos2unix "${S}/wsjtx.desktop"
+	edos2unix "${S}/CMakeLists.txt"
+	sed -i -e "s/COMMAND \${GZIP_EXECUTABLE}/#  COMMAND/" \
+								manpages/CMakeLists.txt || die
+	cmake_src_prepare
+}
+
+src_configure() {
+	# fails to complie with -flto (bug #860417)
+	filter-lto
+
+	local mycmakeargs=(
+		-DWSJT_GENERATE_DOCS="$(usex doc)"
+		-DCMAKE_INSTALL_DOCDIR="share/doc/${PF}"
+	)
+	append-ldflags -no-pie
+	cmake_src_configure
+}
+
+src_install() {
+	cmake_src_install
+	rm "${D}"/usr/bin/rigctl{,d,com}-wsjtx || die
+	rm "${D}"/usr/share/man/man1/rigctl{,d,com}-wsjtx.1 || die
+}


             reply	other threads:[~2023-01-28 18:57 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-28 18:57 Thomas Beierlein [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-06-14 12:30 [gentoo-commits] repo/gentoo:master commit in: media-radio/wsjtx/ Thomas Beierlein
2023-05-09 18:58 Arthur Zamarin
2023-05-09 18:58 Arthur Zamarin
2022-08-22 15:12 Thomas Beierlein
2022-08-08  9:40 Andreas Sturmlechner
2022-04-01  9:13 Thomas Beierlein
2022-03-31 17:36 Jakov Smolić
2022-03-31 17:36 Jakov Smolić
2022-01-06 16:33 Thomas Beierlein
2021-12-24  9:49 Thomas Beierlein
2021-11-22 19:02 Thomas Beierlein
2021-11-22 18:46 Thomas Beierlein
2021-11-22 18:46 Thomas Beierlein
2021-11-11 18:55 Jakov Smolić
2021-11-11 17:57 Jakov Smolić
2021-10-09 10:43 Thomas Beierlein
2021-10-05  6:48 Agostino Sarubbo
2021-10-04 11:00 Agostino Sarubbo
2021-06-29 17:29 Thomas Beierlein
2021-05-11 20:21 Sam James
2021-05-09  9:17 Agostino Sarubbo
2021-05-01 18:19 Agostino Sarubbo
2021-04-23 14:24 Rick Farina
2021-04-23 14:24 Rick Farina
2021-03-27  7:34 Thomas Beierlein
2021-03-24  6:24 Thomas Beierlein
2021-02-18  2:49 Rick Farina
2021-02-18  2:40 Rick Farina
2020-11-20  1:34 Thomas Deutschmann
2020-11-19 22:58 Sam James
2020-09-08 15:00 Thomas Beierlein
2020-07-17 12:03 Thomas Beierlein
2020-07-09 11:23 Thomas Beierlein
2020-07-04 11:43 Thomas Beierlein
2020-07-04 11:43 Thomas Beierlein
2020-05-29  7:39 Agostino Sarubbo
2019-11-30 13:05 Thomas Beierlein
2019-11-30 12:58 Thomas Beierlein
2019-11-19 15:40 Agostino Sarubbo
2019-11-18 11:50 Agostino Sarubbo
2019-07-23  5:39 Thomas Beierlein
2019-07-16 15:00 Rick Farina
2018-12-20 19:06 Rick Farina
2018-12-20  3:25 Rick Farina
2018-12-17 19:27 Thomas Beierlein
2018-06-14 18:31 Thomas Beierlein
2018-05-05  8:33 Thomas Beierlein
2018-05-03 10:11 Mikle Kolyada
2017-12-25  3:05 Michael Palimaka
2017-12-24 12:14 Thomas Beierlein
2017-11-13 16:06 Thomas Beierlein
2017-10-31 18:43 Thomas Beierlein
2017-10-17 10:40 Thomas Beierlein
2017-08-12 14:45 Michael Palimaka
2017-07-17 15:33 Thomas Beierlein

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1674932221.1e5e5e6541dbf2ba842ea8cadc47dec1f82c41e4.tomjbe@gentoo \
    --to=tomjbe@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox