diff options
author | Alexis Ballier <aballier@gentoo.org> | 2015-03-16 18:00:20 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2015-03-16 18:00:20 +0000 |
commit | 654e4744f406ebda2df78e776a4dd33641b10d8d (patch) | |
tree | 04ed1ce29f5f97f64b3c8cd20ec5771f6e2338fe /media-libs | |
parent | EAPI=5 (diff) | |
download | gentoo-2-654e4744f406ebda2df78e776a4dd33641b10d8d.tar.gz gentoo-2-654e4744f406ebda2df78e776a4dd33641b10d8d.tar.bz2 gentoo-2-654e4744f406ebda2df78e776a4dd33641b10d8d.zip |
version bump
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/openal/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/openal/openal-1.16.0.ebuild | 60 |
2 files changed, 66 insertions, 1 deletions
diff --git a/media-libs/openal/ChangeLog b/media-libs/openal/ChangeLog index d68161eb39ca..d15b5a060133 100644 --- a/media-libs/openal/ChangeLog +++ b/media-libs/openal/ChangeLog @@ -1,6 +1,11 @@ # 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.185 2015/01/29 17:54:16 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/openal/ChangeLog,v 1.186 2015/03/16 18:00:20 aballier Exp $ + +*openal-1.16.0 (16 Mar 2015) + + 16 Mar 2015; Alexis Ballier <aballier@gentoo.org> +openal-1.16.0.ebuild: + version bump 29 Jan 2015; Michał Górny <mgorny@gentoo.org> openal-1.15.1-r1.ebuild, openal-1.15.1-r2.ebuild, openal-1.15.1.ebuild: diff --git a/media-libs/openal/openal-1.16.0.ebuild b/media-libs/openal/openal-1.16.0.ebuild new file mode 100644 index 000000000000..f4bde59f19cf --- /dev/null +++ b/media-libs/openal/openal-1.16.0.ebuild @@ -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=${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 ~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 +} |