blob: 5b5e95eee23033782efa6ed0c0e862d4f2b97609 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/mpg123-1.12.1.ebuild,v 1.3 2010/04/24 17:24:02 ssuominen Exp $
EAPI=2
DESCRIPTION="a realtime MPEG 1.0/2.0/2.5 audio player for layers 1, 2 and 3"
HOMEPAGE="http://www.mpg123.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
http://www.mpg123.org/download/${P}.tar.bz2"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="3dnow 3dnowext alsa altivec ipv6 jack mmx nas oss portaudio pulseaudio sdl sse"
# +network
RDEPEND="alsa? ( media-libs/alsa-lib )
jack? ( media-sound/jack-audio-connection-kit )
nas? ( media-libs/nas )
portaudio? ( media-libs/portaudio )
pulseaudio? ( media-sound/pulseaudio )
sdl? ( media-libs/libsdl )
sys-devel/libtool"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_configure() {
local _audio=dummy
local _output=dummy
local _cpu=generic_fpu
local _ipv6=disable
for flag in nas portaudio sdl oss jack alsa pulseaudio; do
if use ${flag}; then
_audio="${_audio} ${flag/pulseaudio/pulse}"
_output=${flag/pulseaudio/pulse}
fi
done
use altivec && _cpu=altivec
if [[ ${ABI} = amd64 ]] && use sse; then
_cpu=x86-64
fi
if [[ ${ABI} = x86 ]]; then
_cpu=i586
use mmx && _cpu=mmx
use 3dnow && _cpu=3dnow
use sse && _cpu=x86
use 3dnowext && _cpu=x86
fi
econf \
--disable-dependency-tracking \
--with-optimization=0 \
--with-audio="${_audio}" \
--with-default-audio=${_output} \
--with-cpu=${_cpu} \
--enable-network \
$(use_enable ipv6)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS* README
}
|