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/tucnak/
Date: Sat, 17 Apr 2021 18:10:42
Message-Id: 1618682953.cfda22f66a3ca5f06189e20d7b0fd72ae8f43817.tomjbe@gentoo
1 commit: cfda22f66a3ca5f06189e20d7b0fd72ae8f43817
2 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 17 18:09:13 2021 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 17 18:09:13 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfda22f6
7
8 media-radio/tucnak: Version bump
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>
12
13 media-radio/tucnak/Manifest | 1 +
14 media-radio/tucnak/tucnak-4.27.ebuild | 68 +++++++++++++++++++++++++++++++++++
15 2 files changed, 69 insertions(+)
16
17 diff --git a/media-radio/tucnak/Manifest b/media-radio/tucnak/Manifest
18 index 0cbd808c324..877fed63422 100644
19 --- a/media-radio/tucnak/Manifest
20 +++ b/media-radio/tucnak/Manifest
21 @@ -1 +1,2 @@
22 DIST tucnak-4.25.tar.gz 3588485 BLAKE2B ade2db19e3be9981d4c3813306e347f47df4e89d62a9b2c382f4b5ac04700850af40e63d8b4b13d7f7ae59f47c864c3af4a8fd7eb572919e4163b106da5d9ce8 SHA512 b9666877f322e3142dae6d95e65b7b1da7e14eac5517d11ae108bf96715205558697a80bb40faa20bf89a01385c30869c48aa8af197dd2c206b4bc8f8b5859b9
23 +DIST tucnak-4.27.tar.gz 3589057 BLAKE2B df089401ce82d6b956e2be8f3a069ba3db5af11a0eb7e5cc4b6e9aeeca0bbaa8a82a22f16ad02d5ed89144415d491f8941add457eb61ef9b3fd62e518068da4e SHA512 a112cc02259c3ae05404bf2fb17e56902fe68681be418a89b53eb54e067671236f0764d717334b89949355499f0119db46b1afb8329245ac6ce5db8d514a55e2
24
25 diff --git a/media-radio/tucnak/tucnak-4.27.ebuild b/media-radio/tucnak/tucnak-4.27.ebuild
26 new file mode 100644
27 index 00000000000..74d1b35b9c8
28 --- /dev/null
29 +++ b/media-radio/tucnak/tucnak-4.27.ebuild
30 @@ -0,0 +1,68 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +inherit autotools flag-o-matic multilib
36 +
37 +DESCRIPTION="Amateur Radio VHF Contest Logbook"
38 +HOMEPAGE="http://tucnak.nagano.cz"
39 +SRC_URI="http://tucnak.nagano.cz/${P}.tar.gz"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="alsa fftw gpm hamlib suid"
45 +
46 +RDEPEND="dev-libs/glib:2
47 + dev-libs/libzia
48 + media-libs/libsndfile
49 + >=media-libs/libsdl-1.2
50 + alsa? ( media-libs/alsa-lib )
51 + fftw? ( sci-libs/fftw:3.0 )
52 + gpm? ( sys-libs/gpm )
53 + hamlib? ( media-libs/hamlib:= )"
54 +DEPEND="${RDEPEND}
55 + virtual/pkgconfig"
56 +
57 +src_prepare() {
58 + eapply_user
59 + # fix destop file
60 + sed -i -e "s/HamRadio/HamRadio;/" share/applications/tucnak.desktop || die
61 + # fix doc install path
62 + sed -i -e "s/docsdir/# docsdir/" \
63 + -e "s/docs_DATA =/# docs_DATA/" \
64 + -e "s/EXTRA_DIST =/# EXTRA_DIST =/" Makefile.am doc/Makefile.am || die
65 + eautoreconf
66 +}
67 +
68 +src_configure() {
69 + append-ldflags -L/usr/$(get_libdir)/hamlib
70 + econf $(use_with alsa) \
71 + $(use_with gpm) $(use_with hamlib) \
72 + $(use_with fftw fftw3)
73 +}
74 +
75 +src_install() {
76 + emake DESTDIR="${D}" install
77 + dodoc AUTHORS ChangeLog doc/NAVOD.pdf
78 + if use suid ; then
79 + fperms 4711 /usr/bin/soundwrapper
80 + fi
81 +}
82 +
83 +pkg_postinst() {
84 + elog "In order to use sound with tucnak add yourself to the 'audio' group"
85 + elog "and to key your rig via the parport add yourself to the 'lp' group"
86 + elog ""
87 + elog "tucnak can be used with the following additional packages:"
88 + elog " media-radio/cwdaemon : Morse output via code cwdaemon"
89 + elog " (No need to recompile)"
90 + if use suid ; then
91 + ewarn "You have choosen to install the little helper program 'soundwrapper'"
92 + ewarn "setuid by setting USE=suid. That helper is only needed if you"
93 + ewarn "want to use morse sidetone output via the PC speaker."
94 + ewarn ""
95 + ewarn "While the helper should be safe by design be aware that setting"
96 + ewarn "any program setuid is a security risk."
97 + fi
98 +}