blob: afbc7bb10c48abf38652a0baf34cffef7625aaa9 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/mpg123-1.6.2.ebuild,v 1.2 2008/12/12 13:49:15 fmccor Exp $
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"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86 ~x86-fbsd"
IUSE="3dnow 3dnowext alsa altivec arts esd ipv6 jack mmx nas network oss portaudio pulseaudio sdl sse"
RDEPEND="alsa? ( media-libs/alsa-lib )
esd? ( media-sound/esound )
jack? ( media-sound/jack-audio-connection-kit )
nas? ( media-libs/nas )
portaudio? ( media-libs/portaudio )
pulseaudio? ( media-sound/pulseaudio )
sdl? ( media-libs/libsdl )
arts? ( kde-base/arts )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
sed -i -e 's:-faltivec::' "${S}"/configure || die "sed failed."
}
src_compile() {
local myaudio
use alsa && myaudio="${myaudio} alsa"
use esd && myaudio="${myaudio} esd"
use jack && myaudio="${myaudio} jack"
use nas && myaudio="${myaudio} nas"
use oss && myaudio="${myaudio} oss"
use portaudio && myaudio="${myaudio} portaudio"
use pulseaudio && myaudio="${myaudio} pulse"
use sdl && myaudio="${myaudio} sdl"
use arts && myaudio="${myaudio} arts"
local mycpu
if use altivec; then
mycpu="--with-cpu=altivec"
elif use 3dnowext; then
mycpu="--with-cpu=3dnowext"
elif use 3dnow; then
mycpu="--with-cpu=3dnow"
elif use sse; then
mycpu="--with-cpu=sse"
elif use mmx; then
mycpu="--with-cpu=mmx"
fi
econf --disable-dependency-tracking \
--with-optimization=0 ${mycpu} \
--with-audio="${myaudio}" \
$(use_enable network) \
$(use_enable ipv6)
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS* README
}
|