* [gentoo-commits] repo/gentoo:master commit in: media-sound/glmix/
@ 2016-04-15 20:43 Sergei Trofimovich
0 siblings, 0 replies; 3+ messages in thread
From: Sergei Trofimovich @ 2016-04-15 20:43 UTC (permalink / raw
To: gentoo-commits
commit: 71177c4886b146ecb71f27bcba566dfff1ad4d5a
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 15 20:43:24 2016 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Apr 15 20:43:24 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71177c48
media-sound/glmix: add missing -lm, bug #516274
Interestingly, -lm is present in upstream Makefile
but gentoo-specific LDFLAGS override forgot to restore it.
Reported-by: Patrick Lauer
Bug: https://bugs.gentoo.org/516274
Package-Manager: portage-2.2.28
media-sound/glmix/glmix-0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/glmix/glmix-0.3.ebuild b/media-sound/glmix/glmix-0.3.ebuild
index 6569c72..d52208c 100644
--- a/media-sound/glmix/glmix-0.3.ebuild
+++ b/media-sound/glmix/glmix-0.3.ebuild
@@ -25,7 +25,7 @@ src_compile() {
local libs="gtk+-2.0 gtkglext-1.0 jack pango"
emake CC="$(tc-getCC)" \
CFLAGS="${CFLAGS} $(pkg-config --cflags ${libs})" \
- LDFLAGS="${LDFLAGS} $(pkg-config --libs ${libs})" || die "emake failed."
+ LDFLAGS="-lm ${LDFLAGS} $(pkg-config --libs ${libs})" || die "emake failed."
}
src_install() {
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/glmix/
@ 2018-09-30 8:38 Andreas Sturmlechner
0 siblings, 0 replies; 3+ messages in thread
From: Andreas Sturmlechner @ 2018-09-30 8:38 UTC (permalink / raw
To: gentoo-commits
commit: 305ae9305fa3ffde1ef8ed0141acccce24f280a6
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 30 08:28:19 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> 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 <m.mairkeimberger <AT> gmail.com>
Closes: https://bugs.gentoo.org/666888
Closes: https://github.com/gentoo/gentoo/pull/9957
Signed-off-by: Andreas Sturmlechner <asturm <AT> 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() {
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/glmix/
@ 2018-09-30 8:46 Andreas Sturmlechner
0 siblings, 0 replies; 3+ messages in thread
From: Andreas Sturmlechner @ 2018-09-30 8:46 UTC (permalink / raw
To: gentoo-commits
commit: 9cdda20b716f29b34b399f5600bd11a040c316b2
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 30 08:46:40 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Sep 30 08:46:40 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cdda20b
media-sound/glmix: Restore keywords
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
media-sound/glmix/glmix-0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/glmix/glmix-0.3.ebuild b/media-sound/glmix/glmix-0.3.ebuild
index b2b43f2ec36..e25af6abda6 100644
--- a/media-sound/glmix/glmix-0.3.ebuild
+++ b/media-sound/glmix/glmix-0.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://devel.tlrmx.org/audio/source/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc sparc x86"
RDEPEND="
media-sound/jack-audio-connection-kit
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-09-30 8:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-30 8:38 [gentoo-commits] repo/gentoo:master commit in: media-sound/glmix/ Andreas Sturmlechner
-- strict thread matches above, loose matches on Subject: below --
2018-09-30 8:46 Andreas Sturmlechner
2016-04-15 20:43 Sergei Trofimovich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox