blob: 8a13e6ee93a7e86a6f34e54c3562a596e8d2e3d0 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit cmake-multilib
MY_P=${PN}-soft-${PV}
DESCRIPTION="A software implementation of the OpenAL 3D audio API"
HOMEPAGE="http://kcat.strangesoft.net/openal.html"
SRC_URI="http://kcat.strangesoft.net/openal-releases/${MY_P}.tar.bz2"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="alsa coreaudio debug neon oss portaudio pulseaudio cpu_flags_x86_sse"
RDEPEND="alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
portaudio? ( >=media-libs/portaudio-19_pre20111121-r1[${MULTILIB_USEDEP}] )
pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
abi_x86_32? (
!<app-emulation/emul-linux-x86-sdl-20131008-r1
!app-emulation/emul-linux-x86-sdl[-abi_x86_32(-)]
)"
DEPEND="${RDEPEND}
oss? ( virtual/os-headers )"
S=${WORKDIR}/${MY_P}
DOCS="alsoftrc.sample env-vars.txt hrtf.txt README"
src_configure() {
# -DEXAMPLES=OFF to avoid FFmpeg dependency wrt #481670
my_configure() {
local mycmakeargs=(
$(cmake-utils_use alsa)
$(cmake-utils_use coreaudio)
$(cmake-utils_use neon)
$(cmake-utils_use oss)
$(cmake-utils_use portaudio)
$(cmake-utils_use pulseaudio)
$(cmake-utils_use cpu_flags_x86_sse sse)
-DEXAMPLES=OFF
)
cmake-utils_src_configure
}
multilib_parallel_foreach_abi my_configure
}
|