blob: d83b2760a7c6e077bf0255c7eb20fdaa6d56702c (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/openal/openal-20020127.ebuild,v 1.10 2002/10/05 17:59:53 gerk Exp $
IUSE="mpeg arts esd sdl oggvorbis alsa"
LIBVER="0.0.6"
S=${WORKDIR}/tmp/openal
DESCRIPTION="OpenAL, the Open Audio Library, is an open, vendor-neutral, cross-platform API for interactive, primarily spatialized audio"
SRC_URI="http://ftp.au.freebsd.org/pub/lokigames/openal/${P}.tar.gz"
HOMEPAGE="http://www.openal.org"
SLOT="0"
LICENSE="LGPL-2"
KEYWORDS="x86 sparc sparc64"
# documentation doesn't say which versions are required...
DEPEND="x86? ( dev-lang/nasm )
alsa? ( media-libs/alsa-lib )
arts? ( kde-base/arts )
esd? ( media-sound/esound )
sdl? ( media-libs/libsdl )
oggvorbis? ( media-libs/libvorbis )
mpeg? ( media-libs/smpeg )"
src_compile() {
local myconf
use esd && myconf="${myconf} --enable-esd"
use sdl && myconf="${myconf} --enable-sdl"
use alsa && myconf="${myconf} --enable-alsa"
use arts && myconf="${myconf} --enable-arts"
use mpeg && myconf="${myconf} --enable-smpeg"
use oggvorbis && myconf="${myconf} --enable-vorbis"
cd ${S}/linux
# disabling -Werror and -Wpedantic-error so it actually builds
mv configure.in configure.in.orig
sed "s|-Werror -pedantic-errors||" configure.in.orig > configure.in
./autogen.sh || die
./configure --enable-arch-asm --prefix=/usr ${myconf} || die
emake all || die
}
src_install() {
cd ${S}/linux
# symlink creation disabled -- see below
make install DESTDIR=${D}/usr/ LN_S="echo " || die
dodoc CREDITS ChangeLog INSTALL NOTES PLATFORM TODO
makeinfo doc/openal.texi
doinfo doc/openal.info
cd ${S}
dodoc CHANGES COPYING CREDITS
dohtml docs/*.html
# something is screwy with the makefiles so we create the two library
# symlinks manually
cd ${D}/usr/lib
ln -f -s libopenal.so.${LIBVER} libopenal.so.0 || die
ln -f -s libopenal.so.${LIBVER} libopenal.so || die
}
|