blob: 04a69cf22ab475cc57047e443685154fbcbf12aa (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
# We may want to grab backports from the SDL-1.2 branch upstream or
# even take snapshots from it in future, as no SDL 1 / 1.2.x releases
# will be made anymore.
MY_P=${P/sdl-/SDL_}
inherit autotools multilib-minimal
DESCRIPTION="Simple Direct Media Layer Mixer Library"
HOMEPAGE="https://www.libsdl.org/projects/SDL_mixer/"
SRC_URI="https://www.libsdl.org/projects/SDL_mixer/release/${MY_P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
IUSE="flac fluidsynth mad midi mikmod mod modplug mp3 playtools smpeg static-libs timidity vorbis +wav"
REQUIRED_USE="
midi? ( || ( timidity fluidsynth ) )
timidity? ( midi )
fluidsynth? ( midi )
mp3? ( || ( smpeg mad ) )
smpeg? ( mp3 )
mad? ( mp3 )
mod? ( || ( mikmod modplug ) )
mikmod? ( mod )
modplug? ( mod )
"
RDEPEND="
>=media-libs/libsdl-1.2.15-r4[${MULTILIB_USEDEP}]
flac? ( >=media-libs/flac-1.2.1-r5:=[${MULTILIB_USEDEP}] )
midi? (
fluidsynth? ( >=media-sound/fluidsynth-1.1.6-r1:=[${MULTILIB_USEDEP}] )
timidity? ( media-sound/timidity++ )
)
mod? (
mikmod? ( >=media-libs/libmikmod-3.3.6-r1[${MULTILIB_USEDEP}] )
modplug? ( >=media-libs/libmodplug-0.8.8.4-r1[${MULTILIB_USEDEP}] )
)
mp3? (
mad? ( >=media-libs/libmad-0.15.1b-r8[${MULTILIB_USEDEP}] )
smpeg? ( >=media-libs/smpeg-0.4.4-r10[${MULTILIB_USEDEP}] )
)
vorbis? (
>=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
>=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}]
)
"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P}"
PATCHES=(
"${FILESDIR}"/${P}-wav.patch
"${FILESDIR}"/${P}-clang.patch
"${FILESDIR}"/${P}-Fix-compiling-against-libmodplug-0.8.8.5.patch
"${FILESDIR}"/${P}-mikmod-r58{7,8}.patch # bug 445980
"${FILESDIR}"/${P}-parallel-build-slibtool.patch
"${FILESDIR}"/${P}-incompatible-func-clang16.patch
)
src_prepare() {
default
sed -e '/link.*play/s/-o/$(LDFLAGS) -o/' -i Makefile.in || die
# Hack to get eautoconf working
# eautoreconf dies with gettext mismatch errors for now
cat acinclude/* >aclocal.m4 || die
eautoconf
}
multilib_src_configure() {
local myeconfargs=(
--disable-music-flac-shared
--disable-music-fluidsynth-shared
--disable-music-mod-shared
--disable-music-mp3-shared
--disable-music-ogg-shared
$(use_enable wav music-wave)
$(use_enable vorbis music-ogg)
$(use_enable mikmod music-mod)
$(use_enable modplug music-mod-modplug)
$(use_enable flac music-flac)
$(use_enable static-libs static)
$(use_enable smpeg music-mp3)
$(use_enable mad music-mp3-mad-gpl)
$(use_enable timidity music-timidity-midi)
$(use_enable fluidsynth music-fluidsynth-midi)
LIBMIKMOD_CONFIG="${EPREFIX}"/usr/bin/${CHOST}-libmikmod-config
)
ECONF_SOURCE=${S} \
econf "${myeconfargs[@]}"
}
multilib_src_install() {
emake DESTDIR="${D}" install
if multilib_is_native_abi && use playtools; then
emake DESTDIR="${D}" install-bin
fi
}
multilib_src_install_all() {
dodoc CHANGES README
find "${ED}" -name '*.la' -delete || die
}
pkg_postinst() {
# bug 412035
# https://bugs.gentoo.org/show_bug.cgi?id=412035
if use midi ; then
if use fluidsynth; then
ewarn "FluidSynth support requires you to set the SDL_SOUNDFONTS"
ewarn "environment variable to the location of a SoundFont file"
ewarn "unless the game or application happens to do this for you."
if use timidity; then
ewarn "Failing to do so will result in Timidity being used instead."
else
ewarn "Failing to do so will result in silence."
fi
fi
fi
}
|