openal with echo cancelation ebuild (not working yet)

This commit is contained in:
root
2015-05-14 23:04:15 +02:00
parent c1809b71d6
commit 9025347e33
3 changed files with 76 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# ChangeLog for media-libs/openal
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/openal/ChangeLog,v 1.186 2015/03/16 18:00:20 aballier Exp $
*openal-9999 (14 May 2015)
First ebuild based on openal-1.1.16

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>sound</herd>
<use>
<flag name='alstream'>Build and install the FFmpeg based alstream example utility</flag>
</use>
</pkgmetadata>

View File

@@ -0,0 +1,60 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/openal/openal-1.16.0.ebuild,v 1.1 2015/03/16 18:00:20 aballier Exp $
EAPI=5
inherit cmake-multilib
MY_P=openal-soft-tox-master
DESCRIPTION="A software implementation of the OpenAL 3D audio API with echo cancelation patches"
HOMEPAGE="https://github.com/irungentoo/openal-soft-tox"
EGIT_REPO_URI="https://github.com/irungentoo/openal-soft-tox.git"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
IUSE="
alsa coreaudio debug oss portaudio pulseaudio qt4
cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse4_1
neon
"
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}] )
qt4? ( dev-qt/qtgui:4 dev-qt/qtcore:4 )
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=(
"-DALSOFT_BACKEND_ALSA=$(usex alsa ON OFF)"
"-DALSOFT_BACKEND_COREAUDIO=$(usex coreaudio ON OFF)"
"-DALSOFT_BACKEND_OSS=$(usex oss ON OFF)"
"-DALSOFT_BACKEND_PORTAUDIO=$(usex portaudio ON OFF)"
"-DALSOFT_BACKEND_PULSEAUDIO=$(usex pulseaudio ON OFF)"
"-DALSOFT_CPUEXT_SSE=$(usex cpu_flags_x86_sse ON OFF)"
"-DALSOFT_CPUEXT_SSE2=$(usex cpu_flags_x86_sse2 ON OFF)"
"-DALSOFT_CPUEXT_SSE4_1=$(usex cpu_flags_x86_sse4_1 ON OFF)"
"-DALSOFT_CPUEXT_NEON=$(usex neon ON OFF)"
"-DALSOFT_UTILS=$(multilib_is_native_abi && echo "ON" || echo "OFF")"
"-DALSOFT_NO_CONFIG_UTIL=$(usex qt4 "$(multilib_is_native_abi && echo "OFF" || echo "ON")" ON)"
"-DALSOFT_EXAMPLES=OFF"
)
cmake-utils_src_configure
}
multilib_parallel_foreach_abi my_configure
}