blob: d0e718ac8b668b3a7d264fe19ba9a5f583a30698 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/zinf/zinf-2.2.3.ebuild,v 1.12 2004/06/25 00:30:54 agriffis Exp $
IUSE="debug esd X gtk oggvorbis gnome arts alsa nls"
inherit kde-functions eutils
DESCRIPTION="An extremely full-featured mp3/vorbis/cd player with ALSA support, previously called FreeAmp"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
RESTRICT="nomirror"
HOMEPAGE="http://www.zinf.org/"
RDEPEND="=dev-libs/glib-1.2*
=x11-libs/gtk+-1.2*
sys-libs/zlib
>=sys-libs/ncurses-5.2
=media-libs/freetype-1*
>=media-libs/musicbrainz-1.0.1
X? ( virtual/x11 )
esd? ( media-sound/esound )
gtk? ( >=media-libs/gdk-pixbuf-0.8 )
gnome? ( gnome-base/ORBit )
oggvorbis? ( media-libs/libvorbis )
alsa? ( >=media-libs/alsa-lib-0.9.8 )
arts? ( kde-base/arts )"
DEPEND="${RDEPEND}
x86? ( dev-lang/nasm )
nls? ( sys-devel/gettext )
>=media-libs/id3lib-3.8.0
sys-apps/sed
dev-lang/perl"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~alpha"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/zinf-2.2.3-id3.patch.bz2
# Remove -Werror so it compiles with gcc3.3
for file in Makefile.header.in configure.in configure
do
mv ${file} ${file}.orig
sed 's/-Werror//g' < ${file}.orig > ${file}
done
chmod 755 configure
}
src_compile() {
local myconf="--enable-cmdline"
myconf="${myconf} `use_enable debug`"
myconf="${myconf} `use_enable esd`"
myconf="${myconf} `use_enable arts`"
myconf="${myconf} `use_enable alsa`"
myconf="${myconf} `use_enable gnome corba`"
if use arts; then
set-kdedir 3
export ARTSCCONFIG="$KDEDIR/bin/artsc-config"
fi
econf ${myconf} || die
make || die
}
src_install() {
into /usr
dobin zinf
exeinto /usr/lib/zinf/plugins
doexe plugins/*
insinto /usr/share/zinf/themes
doins themes/*
dodoc AUTHORS CHANGES COPYING NEWS README README.linux WISHLIST
}
|