blob: e25af6abda64324e11cbcedaeace2be7b9f763ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit desktop toolchain-funcs
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"
IUSE=""
KEYWORDS="amd64 ~ppc sparc x86"
RDEPEND="
media-sound/jack-audio-connection-kit
x11-libs/gtk+:2
>=x11-libs/gtkglext-1
"
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})"
}
src_install() {
dobin ${PN}
dodoc README TODO
make_desktop_entry ${PN} "GL Mixer"
}
|