Gentoo Archives: gentoo-commits

From: "Markus Ullmann (jokey)" <jokey@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-im/climm: ChangeLog climm-0.6.3.ebuild
Date: Wed, 27 Aug 2008 14:46:18
Message-Id: E1KYMHn-0006YZ-3g@stork.gentoo.org
1 jokey 08/08/27 14:46:15
2
3 Modified: ChangeLog
4 Added: climm-0.6.3.ebuild
5 Log:
6 Version bump, thanks to notification from upstream
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo i686)
8
9 Revision Changes Path
10 1.10 net-im/climm/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/climm/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/climm/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/climm/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-im/climm/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 5 Aug 2008 16:31:10 -0000 1.9
23 +++ ChangeLog 27 Aug 2008 14:46:14 -0000 1.10
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-im/climm
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-im/climm/ChangeLog,v 1.9 2008/08/05 16:31:10 gentoofan23 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-im/climm/ChangeLog,v 1.10 2008/08/27 14:46:14 jokey Exp $
29 +
30 +*climm-0.6.3 (27 Aug 2008)
31 +
32 + 27 Aug 2008; Markus Ullmann <jokey@g.o> +climm-0.6.3.ebuild:
33 + Version bump, thanks to notification from upstream
34
35 05 Aug 2008; Thomas Anderson <gentoofan23@g.o> metadata.xml:
36 Add USE flag description to metadata as per GLEP 56.
37
38
39
40 1.1 net-im/climm/climm-0.6.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/climm/climm-0.6.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/climm/climm-0.6.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: climm-0.6.3.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-im/climm/climm-0.6.3.ebuild,v 1.1 2008/08/27 14:46:14 jokey Exp $
50
51 DESCRIPTION="ICQ text-mode client with many features"
52 HOMEPAGE="http://www.climm.org/"
53 SRC_URI="http://www.climm.org/source/${P}.tgz"
54
55 LICENSE="GPL-2"
56 SLOT="0"
57 KEYWORDS="~amd64 ~x86"
58 IUSE="gloox gnutls otr tcl ssl"
59
60 DEPEND="gloox? ( net-libs/gloox )
61 ssl? (
62 || ( gnutls? ( >=net-libs/gnutls-0.8.10 )
63 dev-libs/openssl ) )
64 tcl? ( dev-lang/tcl )
65 otr? ( >=net-libs/libotr-3.0.0 )"
66
67 pkg_setup() {
68 if use gloox && ! use ssl ; then
69 eerror "You need to set the ssl flag when you want to use the gloox"
70 eerror "Jabber library"
71 die "Set ssl or unset gloox for ${PN}"
72 fi
73 }
74
75 src_compile() {
76 local myconf
77 if use ssl ; then
78 if ! use gnutls ; then
79 elog "Using openSSL"
80 myconf="--enable-ssl=openssl"
81 else
82 elog "Using gnutls"
83 myconf="--enable-ssl=gnutls"
84 fi
85 else
86 myconf="--disable-ssl"
87 fi
88
89 econf \
90 $(use_enable gloox) \
91 $(use_enable otr) \
92 $(use_enable ssl) \
93 $(use_enable tcl) \
94 ${myconf} \
95 || die "econf failed"
96
97 emake || die "emake failed"
98 }
99
100 src_install() {
101 emake DESTDIR="${D}" install || die "emake install failed"
102 dodoc AUTHORS ChangeLog FAQ INSTALL NEWS README TODO
103 }