Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/gtk-gnutella: gtk-gnutella-0.96.6.ebuild ChangeLog
Date: Sun, 29 Mar 2009 18:47:46
Message-Id: E1Lo02q-0002By-8f@stork.gentoo.org
1 graaff 09/03/29 18:47:44
2
3 Modified: ChangeLog
4 Added: gtk-gnutella-0.96.6.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.6.7/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.90 net-p2p/gtk-gnutella/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/gtk-gnutella/ChangeLog?rev=1.90&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/gtk-gnutella/ChangeLog?rev=1.90&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/gtk-gnutella/ChangeLog?r1=1.89&r2=1.90
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-p2p/gtk-gnutella/ChangeLog,v
19 retrieving revision 1.89
20 retrieving revision 1.90
21 diff -u -r1.89 -r1.90
22 --- ChangeLog 27 Jul 2008 08:24:39 -0000 1.89
23 +++ ChangeLog 29 Mar 2009 18:47:44 -0000 1.90
24 @@ -1,6 +1,14 @@
25 # ChangeLog for net-p2p/gtk-gnutella
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/gtk-gnutella/ChangeLog,v 1.89 2008/07/27 08:24:39 graaff Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/gtk-gnutella/ChangeLog,v 1.90 2009/03/29 18:47:44 graaff Exp $
30 +
31 +*gtk-gnutella-0.96.6 (29 Mar 2009)
32 +
33 + 29 Mar 2009; Hans de Graaff <graaff@g.o>
34 + +gtk-gnutella-0.96.6.ebuild:
35 + Version bump. The currently stable 0.96.5 version will timeout on April 1st,
36 + meaning that it won't be possible to bootstrap (e.g. use for the first time)
37 + with that version.
38
39 27 Jul 2008; Hans de Graaff <graaff@g.o>
40 gtk-gnutella-0.96.5.ebuild:
41
42
43
44 1.1 net-p2p/gtk-gnutella/gtk-gnutella-0.96.6.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/gtk-gnutella/gtk-gnutella-0.96.6.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/gtk-gnutella/gtk-gnutella-0.96.6.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gtk-gnutella-0.96.6.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-p2p/gtk-gnutella/gtk-gnutella-0.96.6.ebuild,v 1.1 2009/03/29 18:47:44 graaff Exp $
54
55 inherit eutils
56
57 #TODO: headless mode (but not very well tested yet, may still be too
58 #hardcore)
59 IUSE="nls dbus gnutls"
60
61 DESCRIPTION="A GTK+ Gnutella client"
62 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
63 HOMEPAGE="http://gtk-gnutella.sourceforge.net/"
64
65 SLOT="0"
66 LICENSE="GPL-2"
67 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
68
69 RDEPEND=">=dev-libs/libxml2-2.6.0
70 >=x11-libs/gtk+-2.2.1
71 dbus? ( >=sys-apps/dbus-0.35.2 )
72 gnutls? ( >=net-libs/gnutls-1.0.16 )
73 nls? ( >=sys-devel/gettext-0.11.5 )"
74 DEPEND="${RDEPEND}
75 dev-util/pkgconfig"
76
77 src_compile() {
78 # gtk-gnutella now uses a custom build script which in turn drives
79 # the Configure script. The options for the build script are less
80 # arcane, so use that for clarity. The drawback is that the build
81 # script uses a bit of magic on its own and also runs make.
82
83 local myconf
84
85 if ! use nls; then
86 myconf="${myconf} --disable-nls"
87 fi
88
89 if ! use dbus; then
90 myconf="${myconf} --disable-dbus"
91 fi
92
93 if ! use gnutls; then
94 myconf="${myconf} --disable-gnutls"
95 fi
96
97 ./build.sh --prefix="/usr" --gtk2 ${myconf}
98 }
99
100 src_install() {
101 dodir /usr/bin
102 make INSTALL_PREFIX="${D}" install || die "Install failed"
103 dodoc AUTHORS ChangeLog README TODO
104 }