Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/smuxi: ChangeLog smuxi-0.8.ebuild smuxi-0.7.1-r1.ebuild
Date: Tue, 05 Oct 2010 21:03:38
Message-Id: 20101005203634.7A34120051@flycatcher.gentoo.org
1 pacho 10/10/05 20:36:34
2
3 Modified: ChangeLog
4 Added: smuxi-0.8.ebuild
5 Removed: smuxi-0.7.1-r1.ebuild
6 Log:
7 Version bump with some UI improvements (bug #339830 by Thomas Kahle), remove old.
8 (Portage version: 2.1.8.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.12 net-irc/smuxi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/smuxi/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/smuxi/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/smuxi/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-irc/smuxi/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 23 Sep 2010 22:16:29 -0000 1.11
24 +++ ChangeLog 5 Oct 2010 20:36:34 -0000 1.12
25 @@ -1,6 +1,15 @@
26 # ChangeLog for net-irc/smuxi
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-irc/smuxi/ChangeLog,v 1.11 2010/09/23 22:16:29 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-irc/smuxi/ChangeLog,v 1.12 2010/10/05 20:36:34 pacho Exp $
30 +
31 +*smuxi-0.8 (05 Oct 2010)
32 +
33 + 05 Oct 2010; Pacho Ramos <pacho@g.o>
34 + -files/smuxi-0.6.3-infinite-loop.patch, -files/smuxi-0.6.3-mono-2.2.patch,
35 + -smuxi-0.7.1-r1.ebuild, -files/smuxi-0.7.1-mono26.patch,
36 + +smuxi-0.8.ebuild:
37 + Version bump with some UI improvements (bug #339830 by Thomas Kahle),
38 + remove old.
39
40 23 Sep 2010; Markos Chandras <hwoarang@g.o> smuxi-0.7.2.1.ebuild:
41 Stable on amd64 wrt bug #336851
42
43
44
45 1.1 net-irc/smuxi/smuxi-0.8.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/smuxi/smuxi-0.8.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/smuxi/smuxi-0.8.ebuild?rev=1.1&content-type=text/plain
49
50 Index: smuxi-0.8.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/net-irc/smuxi/smuxi-0.8.ebuild,v 1.1 2010/10/05 20:36:34 pacho Exp $
55
56 EAPI=2
57
58 inherit base mono eutils
59
60 DESCRIPTION="A flexible, irssi-like and user-friendly IRC client for the Gnome Desktop."
61 HOMEPAGE="http://www.smuxi.org/main/"
62 SRC_URI="http://www.smuxi.org/jaws/data/files/${P}.tar.gz"
63
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="debug gnome libnotify"
67 LICENSE="|| ( GPL-2 GPL-3 )"
68
69 RDEPEND=">=dev-lang/mono-2.0
70 >=dev-dotnet/smartirc4net-0.4.5.1
71 >=dev-dotnet/nini-1.1.0-r2
72 >=dev-dotnet/log4net-1.2.10-r2
73 gnome? ( >=dev-dotnet/gtk-sharp-2.12
74 >=dev-dotnet/gconf-sharp-2.12
75 >=dev-dotnet/glade-sharp-2.12
76 >=dev-dotnet/glib-sharp-2.12 )
77 libnotify? ( dev-dotnet/notify-sharp )"
78 DEPEND="${RDEPEND}
79 >=dev-util/intltool-0.25
80 >=sys-devel/gettext-0.17
81 >=dev-util/pkgconfig-0.23"
82
83 src_configure() {
84 econf --disable-dependency-tracking \
85 --enable-engine-irc \
86 --without-indicate \
87 $(use_enable debug) \
88 $(use_enable gnome frontend-gnome) \
89 $(use_with libnotify notify)
90 }
91
92 src_compile() {
93 # This is not parallel build safe, see upstream bug #515
94 emake -j1 || die "emake failed"
95 }
96
97 src_install() {
98 emake DESTDIR="${D}" install || die "install failed"
99 dodoc FEATURES TODO README || die "dodoc failed"
100 }