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/tlf/
Date: Wed, 23 Jun 2021 11:04:00
Message-Id: 1624446008.96ca8b59c49d972644cb010e33b4668acaf888dd.tomjbe@gentoo
1 commit: 96ca8b59c49d972644cb010e33b4668acaf888dd
2 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 23 11:00:08 2021 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 23 11:00:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96ca8b59
7
8 media-radio/tlf: Add subslot dependency
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>
12
13 media-radio/tlf/tlf-1.4.1-r1.ebuild | 33 +++++++++++++++++++++++++++++++++
14 1 file changed, 33 insertions(+)
15
16 diff --git a/media-radio/tlf/tlf-1.4.1-r1.ebuild b/media-radio/tlf/tlf-1.4.1-r1.ebuild
17 new file mode 100644
18 index 00000000000..7c2ff3248f6
19 --- /dev/null
20 +++ b/media-radio/tlf/tlf-1.4.1-r1.ebuild
21 @@ -0,0 +1,33 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI="7"
26 +
27 +inherit flag-o-matic
28 +
29 +DESCRIPTION="Console-mode amateur radio contest logger"
30 +HOMEPAGE="http://home.iae.nl/users/reinc/TLF-0.2.html"
31 +SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE="test"
37 +
38 +RESTRICT="!test? ( test )"
39 +
40 +RDEPEND="sys-libs/ncurses:=
41 + dev-libs/glib:2
42 + media-libs/hamlib:=
43 + media-sound/sox
44 + dev-libs/xmlrpc-c[curl]"
45 +DEPEND="
46 + ${RDEPEND}
47 + test? ( dev-util/cmocka )"
48 +
49 +PATCHES=( "${FILESDIR}"/${P}-zone_nr.patch )
50 +
51 +src_configure() {
52 + append-ldflags -L/usr/$(get_libdir)/hamlib
53 + econf --enable-fldigi-xmlrpc
54 +}