summaryrefslogtreecommitdiff
path: root/media-libs/openal/openal-1.15.1-r1.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'media-libs/openal/openal-1.15.1-r1.ebuild')
-rw-r--r--media-libs/openal/openal-1.15.1-r1.ebuild56
1 files changed, 0 insertions, 56 deletions
diff --git a/media-libs/openal/openal-1.15.1-r1.ebuild b/media-libs/openal/openal-1.15.1-r1.ebuild
deleted file mode 100644
index 8ee013b2..00000000
--- a/media-libs/openal/openal-1.15.1-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openal/openal-1.15.1-r1.ebuild,v 1.5 2013/12/31 12:05:37 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 alstream coreaudio debug neon oss portaudio pulseaudio sse"
-
-RDEPEND="alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
- alstream? ( virtual/ffmpeg )
- portaudio? ( >=media-libs/portaudio-19_pre[${MULTILIB_USEDEP}] )
- pulseaudio? ( media-sound/pulseaudio[${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() {
- 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 sse)
- )
-
- if multilib_is_native_abi; then
- mycmakeargs+=( $(cmake-utils_use alstream EXAMPLES) )
- else
- mycmakeargs+=( "-DEXAMPLES=OFF" )
- fi
-
- cmake-utils_src_configure
- }
-
- multilib_parallel_foreach_abi my_configure
-}