blob: 44d5261a5ec58d6bc1911d855b4e62eb73b2e47a (
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
|
# Copyright 1999-2005 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.95-r2.ebuild,v 1.1 2005/09/20 18:00:05 mkay Exp $
inherit eutils
IUSE="gnome xml2 nls"
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="~x86 ~ppc ~sparc ~amd64 ~alpha"
DEPEND="xml2? ( dev-libs/libxml2 )
=dev-libs/glib-1.2* =x11-libs/gtk+-1.2*
dev-util/yacc
nls? ( >=sys-devel/gettext-0.11.5 )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-gtk2.6.patch
}
src_compile() {
local myconf
if use xml2; then
myconf="${myconf} -Dd_libxml2"
else
myconf="${myconf} -Ud_libxml2"
fi
if use nls; then
myconf="${myconf} -Dd_enablenls -Dgmsgfmt=\"/usr/bin/msgfmt\" -Dmsgfmt=\"/usr/bin/msgfmt\""
else
myconf="${myconf} -Ud_enablenls"
fi
./Configure -d -s -e \
-Dprefix="/usr" \
-Dprivlib="/usr/share/gtk-gnutella" \
-Dccflags="${CFLAGS}" \
-Dgtkversion=1 \
${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
if use gnome; then
insinto /usr/share/gnome/apps/Internet
doins ${FILESDIR}/gtk-gnutella.desktop || die
fi
}
pkg_postinst() {
if ! use xml2; then
ewarn "You have installed gtk-gnutella without xml2 support. As such, your"
ewarn "search filters may not be saved when you quit the application."
einfo "If you would like this feature enabled, re-emerge with USE=\"xml2\"."
echo
fi
}
|