Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/weechat: ChangeLog weechat-0.2.6.2.ebuild weechat-0.2.6.ebuild
Date: Fri, 24 Apr 2009 10:23:04
Message-Id: E1LxIYf-0005Ya-00@stork.gentoo.org
1 armin76 09/04/24 10:23:00
2
3 Modified: ChangeLog
4 Added: weechat-0.2.6.2.ebuild
5 Removed: weechat-0.2.6.ebuild
6 Log:
7 Version bump wrt #266900
8 (Portage version: 2.1.6.7/cvs/Linux ia64)
9
10 Revision Changes Path
11 1.64 net-irc/weechat/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/weechat/ChangeLog?rev=1.64&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/weechat/ChangeLog?rev=1.64&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/weechat/ChangeLog?r1=1.63&r2=1.64
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-irc/weechat/ChangeLog,v
20 retrieving revision 1.63
21 retrieving revision 1.64
22 diff -u -r1.63 -r1.64
23 --- ChangeLog 4 Apr 2009 13:43:11 -0000 1.63
24 +++ ChangeLog 24 Apr 2009 10:23:00 -0000 1.64
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-irc/weechat
27 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/ChangeLog,v 1.63 2009/04/04 13:43:11 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/ChangeLog,v 1.64 2009/04/24 10:23:00 armin76 Exp $
30 +
31 +*weechat-0.2.6.2 (24 Apr 2009)
32 +
33 + 24 Apr 2009; Raúl Porcel <armin76@g.o> -weechat-0.2.6.ebuild,
34 + +weechat-0.2.6.2.ebuild:
35 + Version bump wrt #266900
36
37 04 Apr 2009; Markus Meier <maekke@g.o> weechat-0.2.6.1.ebuild:
38 x86 stable, bug #262997
39
40
41
42 1.1 net-irc/weechat/weechat-0.2.6.2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/weechat/weechat-0.2.6.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/weechat/weechat-0.2.6.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: weechat-0.2.6.2.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/weechat-0.2.6.2.ebuild,v 1.1 2009/04/24 10:23:00 armin76 Exp $
52
53 DESCRIPTION="Portable and multi-interface IRC client."
54 HOMEPAGE="http://weechat.flashtux.org/"
55 SRC_URI="http://weechat.flashtux.org/download/${P}.tar.bz2"
56 LICENSE="GPL-3"
57
58 SLOT="0"
59 KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
60 IUSE="debug perl python ruby ssl lua spell"
61
62 DEPEND="sys-libs/ncurses
63 virtual/libiconv
64 perl? ( dev-lang/perl )
65 python? ( virtual/python )
66 ruby? ( dev-lang/ruby )
67 lua? ( >=dev-lang/lua-5.0 )
68 ssl? ( net-libs/gnutls )
69 spell? ( app-text/aspell )"
70 RDEPEND="${DEPEND}"
71
72 src_compile() {
73 # The qt and gtk frontends are not usable, so they're disabled
74 econf \
75 --enable-ncurses \
76 --disable-qt \
77 --disable-gtk \
78 $(use_enable perl) \
79 $(use_enable python) \
80 $(use_enable ruby) \
81 $(use_enable lua) \
82 $(use_enable ssl gnutls) \
83 $(use_enable spell aspell) \
84 $(use_with debug debug 2) \
85 || die "econf failed"
86 emake || die "emake failed"
87 }
88
89 src_install() {
90 make DESTDIR="${D}" install || die "make install failed"
91 dodoc AUTHORS BUGS ChangeLog FAQ NEWS README TODO || die "dodoc failed"
92 }