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: Tue, 21 Jan 2020 18:18:14
Message-Id: 1579630571.2d0c36e0b606f3edb305fa6cd599ad419894de16.tomjbe@gentoo
1 commit: 2d0c36e0b606f3edb305fa6cd599ad419894de16
2 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 21 18:16:11 2020 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 21 18:16:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d0c36e0
7
8 media-radio/tucnak: Version bump
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>
12
13 media-radio/tucnak/Manifest | 1 +
14 media-radio/tucnak/tucnak-4.19.ebuild | 68 +++++++++++++++++++++++++++++++++++
15 2 files changed, 69 insertions(+)
16
17 diff --git a/media-radio/tucnak/Manifest b/media-radio/tucnak/Manifest
18 index 7d5775c3ecd..9f661045d20 100644
19 --- a/media-radio/tucnak/Manifest
20 +++ b/media-radio/tucnak/Manifest
21 @@ -1 +1,2 @@
22 DIST tucnak-4.18.tar.gz 3527134 BLAKE2B 2e059875fb22a9027dde486d82eaa2bfd1d339440b59ffbde3b3923365096e4e7a77edc0690d79d66d1b9b218b2a7698b7783f1f07c0a8f94bc002ee5acc8528 SHA512 9c986bd4e9221a2956722423d8c31e3e420d5f50f2c68577a73d62f5e0913e79526dfbbee29e9f98f25445e35587a95aa709d538e4ba5e17d739a1220e41f0de
23 +DIST tucnak-4.19.tar.gz 3542661 BLAKE2B 0ce6b387f47bae01b21a9c63a8530f8eb0e82c9ba5c7c983190c43e11cbc18b477c30db4f5f3fe743d7a99de9fd1787e64f018180338856e9f8306a3f5849a5a SHA512 4217a073f3b085fd11e92d3eb38386563f7cef022c0e30bc959fd6d6ca6b2efaacfcaa9dc5f48208114490a414e4cfc89bb500560d7f3add28f9534eb205a8f8
24
25 diff --git a/media-radio/tucnak/tucnak-4.19.ebuild b/media-radio/tucnak/tucnak-4.19.ebuild
26 new file mode 100644
27 index 00000000000..b4c1192a2e4
28 --- /dev/null
29 +++ b/media-radio/tucnak/tucnak-4.19.ebuild
30 @@ -0,0 +1,68 @@
31 +# Copyright 1999-2020 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 +}