blob: 90dfaa23574f95dfb74179d03492415dd2c7631d (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/gtk-gnutella/gtk-gnutella-0.96.1.ebuild,v 1.3 2006/06/23 21:56:30 tcort Exp $
inherit eutils
IUSE="gnome nls dbus"
DESCRIPTION="A GTK+ Gnutella client"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
RESTRICT="nomirror"
HOMEPAGE="http://gtk-gnutella.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 ~ppc ~sparc ~x86"
DEPEND="dev-libs/libxml2
dev-util/yacc
dbus? ( sys-apps/dbus )
nls? ( >=sys-devel/gettext-0.11.5 )"
src_compile() {
local myconf
if use nls; then
myconf="${myconf} -Dd_enablenls -Dgmsgfmt=\"/usr/bin/msgfmt\" -Dmsgfmt=\"/usr/bin/msgfmt\""
else
myconf="${myconf} -Ud_enablenls"
fi
if use dbus; then
myconf="${myconf} -Ddbus=true"
else
myconf="${myconf} -Ddbus=false"
fi
./Configure -d -s -e \
-Dprefix="/usr" \
-Dprivlib="/usr/share/gtk-gnutella" \
-Dccflags="${CFLAGS}" \
-Dgtkversion=2 \
${myconf} \
-Doptimize=" " \
-Dofficial="true" || die "Configure failed"
emake || die "Compile failed"
}
src_install() {
dodir /usr/bin
make INSTALL_PREFIX=${D} install || die "Install failed"
find ${D}/usr/share -type f -exec chmod a-x {} \;
dodoc AUTHORS ChangeLog README TODO
}
|