From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E2F46138335 for ; Sun, 30 Sep 2018 08:38:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C7D9CE086F; Sun, 30 Sep 2018 08:38:50 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9D085E086F for ; Sun, 30 Sep 2018 08:38:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 19F48335CF9 for ; Sun, 30 Sep 2018 08:38:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D81E442B for ; Sun, 30 Sep 2018 08:38:45 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1538296707.305ae9305fa3ffde1ef8ed0141acccce24f280a6.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/glmix/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/glmix/glmix-0.3.ebuild X-VCS-Directories: media-sound/glmix/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 305ae9305fa3ffde1ef8ed0141acccce24f280a6 X-VCS-Branch: master Date: Sun, 30 Sep 2018 08:38:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7e985a1e-06d3-4ddc-831a-1b42d58d775e X-Archives-Hash: 08ad5b7862788d0c7dca10f88daf2ffc commit: 305ae9305fa3ffde1ef8ed0141acccce24f280a6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Sep 30 08:28:19 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Sep 30 08:38:27 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=305ae930 media-sound/glmix: EAPI7 bump, https, description Thanks-to: Michael Mair-Keimberger gmail.com> Closes: https://bugs.gentoo.org/666888 Closes: https://github.com/gentoo/gentoo/pull/9957 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/glmix/glmix-0.3.ebuild | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/media-sound/glmix/glmix-0.3.ebuild b/media-sound/glmix/glmix-0.3.ebuild index fa4e7709de0..b2b43f2ec36 100644 --- a/media-sound/glmix/glmix-0.3.ebuild +++ b/media-sound/glmix/glmix-0.3.ebuild @@ -1,30 +1,32 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=2 +EAPI=7 -inherit eutils toolchain-funcs +inherit desktop toolchain-funcs -DESCRIPTION="A 3D widget for mixing up to eight JACK audio streams down to stereo" -HOMEPAGE="http://devel.tlrmx.org/audio" -SRC_URI="http://devel.tlrmx.org/audio/source/${P}.tar.gz" +DESCRIPTION="3D widget for mixing up to eight JACK audio streams down to stereo" +HOMEPAGE="https://devel.tlrmx.org/audio" +SRC_URI="https://devel.tlrmx.org/audio/source/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~ppc sparc x86" IUSE="" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" -RDEPEND="media-sound/jack-audio-connection-kit +RDEPEND=" + media-sound/jack-audio-connection-kit + x11-libs/gtk+:2 >=x11-libs/gtkglext-1 - x11-libs/gtk+:2" -DEPEND="${RDEPEND} - virtual/pkgconfig" +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" src_compile() { local libs="gtk+-2.0 gtkglext-1.0 jack pango" emake CC="$(tc-getCC)" \ CFLAGS="${CFLAGS} $(pkg-config --cflags ${libs})" \ - LDFLAGS="-lm ${LDFLAGS} $(pkg-config --libs ${libs})" || die "emake failed." + LDFLAGS="-lm ${LDFLAGS} $(pkg-config --libs ${libs})" } src_install() {