Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/glmix/
Date: Sun, 30 Sep 2018 08:38:51
Message-Id: 1538296707.305ae9305fa3ffde1ef8ed0141acccce24f280a6.asturm@gentoo
1 commit: 305ae9305fa3ffde1ef8ed0141acccce24f280a6
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 30 08:28:19 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 30 08:38:27 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=305ae930
7
8 media-sound/glmix: EAPI7 bump, https, description
9
10 Thanks-to: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Closes: https://bugs.gentoo.org/666888
12 Closes: https://github.com/gentoo/gentoo/pull/9957
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 media-sound/glmix/glmix-0.3.ebuild | 26 ++++++++++++++------------
16 1 file changed, 14 insertions(+), 12 deletions(-)
17
18 diff --git a/media-sound/glmix/glmix-0.3.ebuild b/media-sound/glmix/glmix-0.3.ebuild
19 index fa4e7709de0..b2b43f2ec36 100644
20 --- a/media-sound/glmix/glmix-0.3.ebuild
21 +++ b/media-sound/glmix/glmix-0.3.ebuild
22 @@ -1,30 +1,32 @@
23 -# Copyright 1999-2012 Gentoo Foundation
24 +# Copyright 1999-2018 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 -EAPI=2
28 +EAPI=7
29
30 -inherit eutils toolchain-funcs
31 +inherit desktop toolchain-funcs
32
33 -DESCRIPTION="A 3D widget for mixing up to eight JACK audio streams down to stereo"
34 -HOMEPAGE="http://devel.tlrmx.org/audio"
35 -SRC_URI="http://devel.tlrmx.org/audio/source/${P}.tar.gz"
36 +DESCRIPTION="3D widget for mixing up to eight JACK audio streams down to stereo"
37 +HOMEPAGE="https://devel.tlrmx.org/audio"
38 +SRC_URI="https://devel.tlrmx.org/audio/source/${P}.tar.gz"
39
40 LICENSE="GPL-2"
41 SLOT="0"
42 -KEYWORDS="amd64 ~ppc sparc x86"
43 IUSE=""
44 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
45
46 -RDEPEND="media-sound/jack-audio-connection-kit
47 +RDEPEND="
48 + media-sound/jack-audio-connection-kit
49 + x11-libs/gtk+:2
50 >=x11-libs/gtkglext-1
51 - x11-libs/gtk+:2"
52 -DEPEND="${RDEPEND}
53 - virtual/pkgconfig"
54 +"
55 +DEPEND="${RDEPEND}"
56 +BDEPEND="virtual/pkgconfig"
57
58 src_compile() {
59 local libs="gtk+-2.0 gtkglext-1.0 jack pango"
60 emake CC="$(tc-getCC)" \
61 CFLAGS="${CFLAGS} $(pkg-config --cflags ${libs})" \
62 - LDFLAGS="-lm ${LDFLAGS} $(pkg-config --libs ${libs})" || die "emake failed."
63 + LDFLAGS="-lm ${LDFLAGS} $(pkg-config --libs ${libs})"
64 }
65
66 src_install() {