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: Mon, 22 Nov 2021 19:02:55 +0000 (UTC)	[thread overview]
Message-ID: <1637607760.401152a0b77bd3fab677a950a1b935b5403ca915.tomjbe@gentoo> (raw)

commit:     401152a0b77bd3fab677a950a1b935b5403ca915
Author:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 22 19:02:11 2021 +0000
Commit:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
CommitDate: Mon Nov 22 19:02:40 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=401152a0

media-radio/wsjtx: Minor bug fix release

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>

 media-radio/wsjtx/Manifest           |  1 +
 media-radio/wsjtx/wsjtx-2.5.2.ebuild | 80 ++++++++++++++++++++++++++++++++++++
 2 files changed, 81 insertions(+)

diff --git a/media-radio/wsjtx/Manifest b/media-radio/wsjtx/Manifest
index d0d9fe9f2ac1..1f0f1683b17b 100644
--- a/media-radio/wsjtx/Manifest
+++ b/media-radio/wsjtx/Manifest
@@ -1,2 +1,3 @@
 DIST wsjtx-2.5.0.tgz 25180010 BLAKE2B 09a50f8bbaca4fa6883ad335a6eb3e0d60d3e20382140ab69e3165ba4a38c9e96b059831db9a28452b15f5a0b98118e1269f3484ac8f375525135236b9d7ce02 SHA512 d5f801c9ec038a84d5b12a3843de9af7bbd6d628bd5eb8d3dd1e1621f04b319f9cc2ed01c882bf09ad3801800ee1b1fbeb49c8a9f991a2c03f3170ac192a6017
 DIST wsjtx-2.5.1.tgz 25249461 BLAKE2B fe858e4a21434c7357aa5baab8f4aff206a22bec7305b2d7c6a3860a389ca19779f4775a5618c046b25a71006a882f7a33b30baebe6e848182bd434ff82bb9aa SHA512 bce84766ea1eb13e899ccfc252ee3bcdb6f1d50afa6b312b0509d1eea8e5dcfc958c772fee2a2c40d43058e06ecda798fa9136252e3de0c4a40df27217a4b362
+DIST wsjtx-2.5.2.tgz 25246974 BLAKE2B ada5fc73a600477fa7f1f68c9c8c53e26c56d60aea1c28edc8c35e4ff67a309bf61e82f58c93c05a24c08ed7e77419c2a6ef6862b7cac059cccbebe66512afaf SHA512 cdccbb824614d391aa8f750e3c7e47d1fe8a9704f50d8a361e8741fadea971683383d9dfe0456c674b4584a47eb9a0fdce9c36a608d164de5ae98538e9b83705

diff --git a/media-radio/wsjtx/wsjtx-2.5.2.ebuild b/media-radio/wsjtx/wsjtx-2.5.2.ebuild
new file mode 100644
index 000000000000..aef0bd374750
--- /dev/null
+++ b/media-radio/wsjtx/wsjtx-2.5.2.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit cmake flag-o-matic
+
+MY_P=${P/_/-}
+
+DESCRIPTION="Weak signal ham radio communication"
+HOMEPAGE="http://physics.princeton.edu/pulsar/K1JT/wsjtx.html"
+SRC_URI="mirror://sourceforge/wsjt/${MY_P}.tgz"
+
+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}
+	dev-qt/linguist-tools
+	"
+
+S=${WORKDIR}/wsjtx
+
+PATCHES=( "${FILESDIR}/${PN}-2.0.1-hamlib.patch"
+		  "${FILESDIR}/${PN}-2.3.0-drop-docs.patch"
+		  "${FILESDIR}/${PN}-2.1.2-qt_helpers.patch"
+		  "${FILESDIR}/${PN}-2.2.0-werror.patch"
+		  "${FILESDIR}/${PN}-clang.patch" )
+
+DOCS=( AUTHORS BUGS NEWS README THANKS )
+
+src_unpack() {
+	unpack ${A}
+	unpack "${WORKDIR}/${MY_P}/src/wsjtx.tgz"
+}
+
+src_prepare() {
+	sed -i -e "s/COMMAND \${GZIP_EXECUTABLE}/#  COMMAND/" \
+								manpages/CMakeLists.txt || die
+	eapply_user
+	cmake_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DWSJT_GENERATE_DOCS="$(usex doc)"
+		-DCMAKE_INSTALL_DOCDIR="share/doc/${PF}"
+	)
+	append-ldflags -no-pie
+	cmake_src_configure
+}
+
+src_compile() {
+	cmake_src_compile
+}
+
+src_install() {
+	cmake_src_install
+	rm "${D}"/usr/bin/rigctl{,d}-wsjtx || die
+	rm "${D}"/usr/share/man/man1/rigctl{,d,com}-wsjtx.1 || die
+}


             reply	other threads:[~2021-11-22 19:03 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-22 19:02 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
2023-01-28 18:57 Thomas Beierlein
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 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=1637607760.401152a0b77bd3fab677a950a1b935b5403ca915.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