blob: b92723c1a5ec07608350d33e88f3b3e174a1f7c8 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-sound/sdl-sound-1.0.1-r1.ebuild,v 1.7 2006/11/07 19:17:30 mr_bones_ Exp $
WANT_AUTOMAKE="1.5"
inherit autotools
MY_P="${P/sdl-/SDL_}"
DESCRIPTION="A library that handles the decoding of sound file formats"
HOMEPAGE="http://icculus.org/SDL_sound/"
SRC_URI="http://icculus.org/SDL_sound/downloads/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 sparc x86"
IUSE="flac mikmod vorbis speex physfs"
DEPEND=">=media-libs/libsdl-1.2
flac? ( ~media-libs/flac-1.1.2 )
mikmod? ( >=media-libs/libmikmod-3.1.9 )
vorbis? ( >=media-libs/libvorbis-1.0_beta4 )
speex? ( media-libs/speex
media-libs/libogg )
physfs? ( dev-games/physfs )"
S=${WORKDIR}/${MY_P}
src_compile() {
econf \
--disable-dependency-tracking \
--enable-midi \
--disable-smpeg \
$(use_enable flac) \
$(use_enable speex) \
$(use_enable mikmod) \
$(use_enable physfs) \
$(use_enable vorbis ogg) \
|| die
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc CHANGELOG CREDITS README TODO
}
|