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