blob: 4fd90871615992b3c7b3c95b1555752f07d96edb (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/lopster/lopster-1.2.2-r2.ebuild,v 1.2 2005/09/12 18:07:46 mkay Exp $
inherit eutils
IUSE="nls vorbis zlib flac"
DESCRIPTION="A Napster Client using GTK"
HOMEPAGE="http://lopster.sourceforge.net"
SRC_URI="mirror://sourceforge/lopster/${P}.tar.gz
mirror://gentoo/${P}-bugfixes-3.patch.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64"
RDEPEND="=x11-libs/gtk+-1.2*
nls? ( sys-devel/gettext )
zlib? ( sys-libs/zlib )
flac? ( media-libs/flac )
vorbis? ( >=media-libs/libvorbis-1.0 )"
DEPEND="${RDEPEND}
>=sys-devel/autoconf-2.59
>=sys-devel/automake-1.9"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${DISTDIR}/${P}-bugfixes-3.patch.bz2
export WANT_AUTOCONF=2.5
./autogen.sh
}
src_compile() {
econf \
--with-pthread \
`use_enable nls` \
`use_with zlib` \
`use_with flac` \
`use_with vorbis ogg` || die "econf failed"
emake || die
}
src_install () {
einstall || die
dodoc AUTHORS BUGS README ChangeLog NEWS TODO
}
|