blob: 3d5a45e6056649566f6e24ab758717735c8d499d (
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/alsaplayer/alsaplayer-0.99.75-r1.ebuild,v 1.10 2004/12/06 20:06:19 eradicator Exp $
inherit eutils
IUSE="nas nls esd opengl doc oss gtk oggvorbis alsa"
DESCRIPTION="Media player primarily utilising ALSA"
HOMEPAGE="http://www.alsaplayer.org/"
SRC_URI="http://www.alsaplayer.org/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc ~alpha ~amd64"
RDEPEND="alsa? ( >=media-libs/alsa-lib-0.9 )
doc? ( app-doc/doxygen )
esd? ( media-sound/esound )
gtk? ( =x11-libs/gtk+-1* )
nas? ( media-libs/nas )
opengl? ( virtual/opengl )
oggvorbis? ( media-libs/libvorbis )
>=media-libs/libmikmod-3.1.10
>=dev-libs/glib-1.2.10"
DEPEND="${RDEPEND}
sys-apps/sed
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd ${S}
sed -i "/#if SND_LIB_MAJOR>0 || (SND_LIB_MAJOR==0 && SND_LIB_MINOR==5)/s/SND_LIB_MAJOR>0 ||//" configure
}
src_compile() {
epatch ${FILESDIR}/gcc.patch
local myconf
use oggvorbis \
&& myconf="--enable-oggvorbis" \
|| myconf="--disable-oggvorbis --disable-oggtest --disable-vorbistest"
use oss \
&& myconf="${myconf} --enable-oss" \
|| myconf="${myconf} --disable-oss"
use esd \
&& myconf="${myconf} --enable-esd" \
|| myconf="${myconf} --disable-esd --disable-esdtest"
use nas \
&& myconf="${myconf} --enable-nas" \
|| myconf="${myconf} --disable-nas"
use opengl \
&& myconf="${myconf} --enable-opengl" \
|| myconf="${myconf} --disable-opengl"
use gtk \
&& myconf="${myconf} --enable-gtk" \
|| myconf="${myconf} --disable-gtk --disable-gtktest --disable-glibtest"
use nls \
&& myconf="${myconf} --enable-nls" \
|| myconf="${myconf} --disable-nls"
use sparc \
&& myconf="${myconf} --enable-sparc" \
|| myconf="${myconf} --disable-sparc"
export CPPFLAGS="${CPPFLAGS} -I/usr/X11R6/include"
econf \
--disable-sgi \
${myconf} || die "econf failed"
# ./configure --enable-gtk --libdir=/usr/lib/alsaplayer
emake || die
}
src_install() {
make DESTDIR=${D} docdir=${D}/usr/share/doc/${PF} install
# einstall \
# docdir=${D}/usr/share/doc/${P}
dodoc AUTHORS COPYING ChangeLog README TODO DONATION*
dodoc docs/sockmon.txt docs/wishlist.txt
}
|