blob: 505d9228e925a2b82eee248dc11f6a60b1d6367f (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake readme.gentoo-r1
DESCRIPTION="MIDI processing library and player using the GUS patch set"
HOMEPAGE="http://www.mindwerks.net/projects/wildmidi/"
SRC_URI="https://github.com/Mindwerks/${PN}/archive/${P}.tar.gz"
LICENSE="GPL-3+ LGPL-3+"
SLOT="0"
KEYWORDS="~amd64 arm ~arm64 ~hppa ~ppc ppc64 ~riscv x86"
IUSE="+alsa openal oss +player sndio"
DEPEND="
player? (
alsa? ( media-libs/alsa-lib )
openal? ( media-libs/openal )
sndio? ( media-sound/sndio )
)
"
RDEPEND="${DEPEND}
media-sound/timidity-freepats
"
DOC_CONTENTS="${PN} is using timidity-freepats for midi playback.
A default configuration file was placed on /etc/${PN}/${PN}.cfg.
For more information please read the ${PN}.cfg manpage."
S="${WORKDIR}/${PN}-${P}"
src_prepare() {
cmake_src_prepare
# Fix location of media-sound/timidity-freepats
# See #749759
sed -i -e "s:midi/freepats:timidity/freepats:" cfg/wildmidi.cfg || die
}
src_configure() {
local mycmakeargs=(
-DWANT_ALSA=$(usex alsa)
-DWANT_OPENAL=$(usex openal)
-DWANT_OSS=$(usex oss)
-DWANT_PLAYER=$(usex player)
-DWANT_SNDIO=$(usex sndio)
)
cmake_src_configure
}
src_install() {
cmake_src_install
insinto /etc/${PN}/
doins cfg/wildmidi.cfg
readme.gentoo_create_doc
}
|