blob: a04a482f9d15a1cd6c455e78b2bf660470620c1d (
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
|
# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="A tool for controlling aucat and/or sndiod volume through MIDI"
HOMEPAGE="http://www.sndio.org/"
SRC_URI="http://www.sndio.org/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
dev-libs/libbsd
media-sound/sndio:=
"
RDEPEND="${DEPEND}"
src_prepare() {
default
sed -i \
-e 's?/usr/local?/usr?g' \
-e 's?man/man1?share/man/man1?g' \
-e 's?LDADD = -lsndio?LDADD = -lbsd -lsndio?' \
Makefile || die "Failed modifying Makefile"
}
src_compile() {
tc-export CC
default
}
|