Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/xoscope/
Date: Mon, 29 Aug 2022 19:09:36
Message-Id: 1661799987.7777a93212ad913c27ee9214c08ee36c507ee770.asturm@gentoo
1 commit: 7777a93212ad913c27ee9214c08ee36c507ee770
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 29 19:05:49 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 29 19:06:27 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7777a932
7
8 sci-electronics/xoscope: add 2.3, bump to EAPI-8, add missing deps
9
10 Bug: https://bugs.gentoo.org/832757
11 Closes: https://bugs.gentoo.org/831313
12 Closes: https://bugs.gentoo.org/849935
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 sci-electronics/xoscope/Manifest | 1 +
16 sci-electronics/xoscope/xoscope-2.3.ebuild | 34 ++++++++++++++++++++++++++++++
17 2 files changed, 35 insertions(+)
18
19 diff --git a/sci-electronics/xoscope/Manifest b/sci-electronics/xoscope/Manifest
20 index 0a0abf655aab..60c651e80dd4 100644
21 --- a/sci-electronics/xoscope/Manifest
22 +++ b/sci-electronics/xoscope/Manifest
23 @@ -1 +1,2 @@
24 DIST xoscope-2.2.tar.gz 307319 BLAKE2B 860fe234e5958a005ff0cff5143fcc0711d69b958e2f6277589d08074001872b065ecb435493285231ff0c61aea1b50b221aa36127b25947184e059e951a70ec SHA512 77a1d7d673af3d82e5a3d563d6901c3d6f5a16a1d889e9b95ac2d7d10c8036461a94fb841266b6d131e96303d4fce47b4bc8255b3855690e9148ead6c38b74cd
25 +DIST xoscope-2.3.tar.gz 390105 BLAKE2B 140dd39a9fa754c9ec274041ed0f64124f58b68fabc56a940498d81698146e8474040728360b25ece367cf64bf6b31e2e04b246529d73d4829242b8570eadc3d SHA512 9f1c15a240644027927e1bc39d2a0204d03b8dbe9d1d2aed974d062777562c6877d46f6e3768cf506799d902373fd26a090d94821b0f791f8f3151f7bb2e7eee
26
27 diff --git a/sci-electronics/xoscope/xoscope-2.3.ebuild b/sci-electronics/xoscope/xoscope-2.3.ebuild
28 new file mode 100644
29 index 000000000000..7dee2f34fbac
30 --- /dev/null
31 +++ b/sci-electronics/xoscope/xoscope-2.3.ebuild
32 @@ -0,0 +1,34 @@
33 +# Copyright 1999-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +inherit autotools linux-info
39 +
40 +DESCRIPTION="Soundcard Oscilloscope for X"
41 +HOMEPAGE="http://xoscope.sourceforge.net"
42 +SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +RDEPEND="
49 + dev-libs/glib:2
50 + media-libs/alsa-lib
51 + sci-libs/fftw:3.0=
52 + virtual/man
53 + x11-libs/gtk+:3
54 + >=x11-libs/gtkdatabox-1"
55 +DEPEND="${RDEPEND}"
56 +BDEPEND="virtual/pkgconfig"
57 +
58 +CONFIG_CHECK="~!SND_PCM_OSS"
59 +ERROR_SND_PCM_OSS="CONFIG_SND_PCM_OSS is needed to support sound card input via /dev/dsp"
60 +
61 +PATCHES=( "${FILESDIR}"/${PN}-2.2-man_no_-Tutf8.patch )
62 +
63 +src_prepare() {
64 + default
65 + eautoreconf
66 +}