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