blob: 243e82b2aa062236e5b958f71e92e1edcf23ce5e (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/gnapster/gnapster-1.5.0-r2.ebuild,v 1.10 2004/02/25 14:24:22 aliz Exp $
inherit gnuconfig
IUSE="nls gtk gnome"
S=${WORKDIR}/${P}
DESCRIPTION="A napster client for GTK/GNOME"
SRC_URI="http://jasta.gotlinux.org/files/${P}.tar.gz"
HOMEPAGE="http://jasta.gotlinux.org/gnapster.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc ~amd64"
DEPEND="=x11-libs/gtk+-1.2*
gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r1 )
gtk? ( >=media-libs/gdk-pixbuf-0.11.0-r1 )"
src_compile() {
gnuconfig_update
local myconf
use nls || myconf="${myconf} --disable-nls"
use gnome \
&& myconf="${myconf} --with-gnome" \
|| myconf="${myconf} --disable-gnome"
use gtk || myconf="${myconf} --disable-gdk-pixbuf --disable-gtktest"
./configure --host=${CHOST} \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib \
${myconf} || die
emake || die
}
src_install () {
make prefix=${D}/usr \
sysconfdir=${D}/etc \
localstatedir=${D}/var/lib \
install || die
dodoc AUTHORS COPYING README* TODO NEWS
}
|