Gentoo Archives: gentoo-commits

From: "Tony Vroon (chainsaw)" <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/conspire: ChangeLog conspire-1.0.0.ebuild
Date: Thu, 08 Oct 2009 10:20:15
Message-Id: E1Mvq6X-0001FB-0j@stork.gentoo.org
1 chainsaw 09/10/08 10:20:13
2
3 Modified: ChangeLog
4 Added: conspire-1.0.0.ebuild
5 Log:
6 Version bump, adds stability & build fixes compared to the earlier beta.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.13 net-irc/conspire/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/conspire/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/conspire/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/conspire/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-irc/conspire/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 11 Aug 2009 19:50:02 -0000 1.12
23 +++ ChangeLog 8 Oct 2009 10:20:12 -0000 1.13
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-irc/conspire
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-irc/conspire/ChangeLog,v 1.12 2009/08/11 19:50:02 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-irc/conspire/ChangeLog,v 1.13 2009/10/08 10:20:12 chainsaw Exp $
29 +
30 +*conspire-1.0.0 (08 Oct 2009)
31 +
32 + 08 Oct 2009; <chainsaw@g.o> +conspire-1.0.0.ebuild:
33 + Version bump, adds stability & build fixes compared to the earlier beta.
34
35 11 Aug 2009; Christian Faulhammer <fauli@g.o> conspire-0.20.ebuild:
36 stable x86, bug 277906
37
38
39
40 1.1 net-irc/conspire/conspire-1.0.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/conspire/conspire-1.0.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/conspire/conspire-1.0.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: conspire-1.0.0.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-irc/conspire/conspire-1.0.0.ebuild,v 1.1 2009/10/08 10:20:12 chainsaw Exp $
50
51 inherit eutils
52
53 MY_P="${P/_/-}"
54 S="${WORKDIR}/${MY_P}"
55 DESCRIPTION="A high quality IRC client which uses a multitude of interfaces"
56 HOMEPAGE="http://www.nenolod.net/conspire/"
57 SRC_URI="http://distfiles.atheme.org/${MY_P}.tgz"
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ia64 ~sparc ~x86"
61 IUSE="python gnutls ipv6 nls mmx socks5 dbus"
62 DEPEND="nls? ( dev-util/intltool )
63 dev-util/pkgconfig"
64 RDEPEND=">=dev-libs/libmowgli-0.6.0
65 >=x11-libs/gtk+-2.10
66 >=dev-libs/glib-2.14
67 x11-libs/libnotify
68 x11-libs/libsexy
69 dbus? ( >=dev-libs/dbus-glib-0.60 )
70 python? ( >=dev-lang/python-2.2 )"
71
72 src_compile() {
73 econf \
74 $(use_enable socks5 socks) \
75 $(use_enable ipv6) \
76 $(use_enable gnutls) \
77 $(use_enable python) \
78 $(use_enable mmx) \
79 $(use_enable nls) \
80 $(use_enable dbus) \
81 --enable-spell=libsexy \
82 --enable-regex \
83 || die
84 emake || die "emake failed"
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install || die "emake install failed"
89 dodoc NEWS TODO
90 }