blob: 29336fc356410296aaf350cd833d8b6f8a65b18e (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.5-r1.ebuild,v 1.1 2003/03/25 00:26:17 malverian Exp $
IUSE="mpeg mikmod oggvorbis"
MY_P="${P/sdl-/SDL_}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="Simple Direct Media Layer Mixer Library"
SRC_URI="http://www.libsdl.org/projects/SDL_mixer/release/${MY_P}.tar.gz"
HOMEPAGE="http://www.libsdl.org/projects/SDL_mixer/index.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc ~alpha"
DEPEND=">=media-libs/libsdl-1.2.5
>=media-libs/smpeg-0.4.4-r1
mikmod? ( >=media-libs/libmikmod-3.1.10 )
oggvorbis? ( >=media-libs/libvorbis-1.0_beta4 )"
src_unpack() {
unpack ${A}
cd ${S}/timidity
cp config.h config.h.orig
sed -e 's:/usr/local/lib/timidity:/usr/share/timidity:' config.h.orig > config.h
rm -f config.h.orig
}
src_compile() {
local myconf
use mikmod || myconf="${myconf} --disable-mod"
use mpeg || myconf="${myconf} --disable-music-mp3"
use oggvorbis || myconf="${myconf} --disable-music-ogg"
econf ${myconf} || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc CHANGES COPYING README
}
|