ChangeLog

# ChangeLog for net-im/climm
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-im/climm/ChangeLog,v 1.8 2008/03/04 20:49:02 jokey Exp $

*climm-0.6.2 (04 Mar 2008)

04 Mar 2008; Markus Ullmann +climm-0.6.2.ebuild:
Version bump for bug #211435 now supports latest gloox lib, thanks to pavel
sanda for the notify

10 Feb 2008; Markus Ullmann climm-0.6.1-r1.ebuild:
Strip spaces in assignments

08 Jan 2008; Markus Ullmann -climm-0.6.ebuild,
-climm-0.6.1.ebuild, climm-0.6.1-r1.ebuild:
Tweak dependency to use older gloox only

05 Dec 2007; Markus Ullmann climm-0.6.1-r1.ebuild:
Fix up gnutls dep as notified in bug #198132

28 Oct 2007; Markus Ullmann climm-0.6.1-r1.ebuild:
Add a dep to otr 3.0 for bug #195862 and add a check for ssl/gloox useflags
to fix jabber connection issues reported by armin76 on IRC

*climm-0.6.1-r1 (22 Oct 2007)

22 Oct 2007; Markus Ullmann climm-0.6.ebuild,
climm-0.6.1.ebuild, +climm-0.6.1-r1.ebuild:
New version with gloox and otr support, also quoting fixes

*climm-0.6.1 (22 Oct 2007)

22 Oct 2007; Markus Ullmann +climm-0.6.1.ebuild:
Version bump wrt bug #195862 thanks to Andreas Weber

*climm-0.6 (17 Sep 2007)

17 Sep 2007; Markus Ullmann +metadata.xml,
+climm-0.6.ebuild:
Version bump wrt bug #192237 and rename package to climm

Manifest

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

DIST climm-0.6.1.tgz 1177518 RMD160 11ec17ee64515c03eff621168200cb4ea0ada405 SHA1 d4b60397d22f7232faedc877810bfbd34f5b3aeb SHA256 900b054c4cfc27e3f0363038705eaee5c2457a0b3d0ae5e587deaf7cfb94eea2
DIST climm-0.6.2.tgz 1190182 RMD160 7a52b4d26456c1068707e5cc3bafdbad31a28e2a SHA1 42ab55aa576a9ab0b51d83b38dc06af1a5467941 SHA256 25e0aca09981f65eef2f77f61b8580a99b690f4a3ae9cf1441151ad551c5812d
EBUILD climm-0.6.1-r1.ebuild 1334 RMD160 4337f8ab3230e0a341006daa337a35befc3b1f17 SHA1 86e3f660ae1ef24948d64b19ff202cdc5ac7deed SHA256 319c53e3eaba16bace641418c8b617c2dcafb34e223300ac280a1a09149ba342
EBUILD climm-0.6.2.ebuild 1326 RMD160 ce27b3c13d09e33e96d7669af5e095f7937bea84 SHA1 3e2e6f79cc481b6448e44a04b381a7b95ea8c38d SHA256 24a1747a89862b7864147a2623b7a7bcada0e51e45ecd4cfc1b49ef8b3129568
MISC ChangeLog 1520 RMD160 5f20cb52ea145ba6f3ff8b5f2c9afd40fdd311e0 SHA1 b23e93adb63638e1850992c1c6859cb9b0a0b420 SHA256 51016d079318e3bbc8f39e768a59db3281c5b7cd566e661b1744af9a494381f1
MISC metadata.xml 250 RMD160 b6e51a264e1584f783bd491505e99523d2ea6ebf SHA1 adf080dc000855fff7cb5595582e3b1acfe62dca SHA256 9f906a6688066a1ded86eb663ff87e162ac0d2e4c02a22f73fc158323bec0a61
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.7 (GNU/Linux)

iD8DBQFHzbXIz974XjDVpbkRAiwiAKDTxapptMMUwBhDR9ooEEMWa7xf8ACgx16y
Z1rdZGY8+WluW5Np8Uc+Xcs=
=ye8m
-----END PGP SIGNATURE-----

climm-0.6.1-r1.ebuild

# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/climm/climm-0.6.1-r1.ebuild,v 1.5 2008/02/10 18:56:06 jokey Exp $

DESCRIPTION="ICQ text-mode client with many features"
HOMEPAGE="http://www.climm.org/"
SRC_URI="http://www.climm.org/source/${P}.tgz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gloox gnutls otr tcl ssl"

DEPEND="gloox? ( ssl? (
|| ( gnutls? ( >=net-libs/gnutls-0.8.10 )
dev-libs/openssl ) )
tcl? ( dev-lang/tcl )
otr? ( >=net-libs/libotr-3.0.0 )"

pkg_setup() {
if use gloox && ! use ssl ; then
eerror "You need to set the ssl flag when you want to use the gloox"
eerror "Jabber library"
die "Set ssl or unset gloox for ${PN}"
fi
}

src_compile() {
local myconf
if use ssl ; then
if ! use gnutls ; then
elog "Using openSSL"
myconf="--enable-ssl=openssl"
else
elog "Using gnutls"
myconf="--enable-ssl=gnutls"
fi
else
myconf="--disable-ssl"
fi

econf \
$(use_enable gloox) \
$(use_enable otr) \
$(use_enable ssl) \
$(use_enable tcl) \
${myconf} \
|| die "econf failed"

emake || die "emake failed"
}

src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog FAQ INSTALL NEWS README TODO
}

climm-0.6.2.ebuild

# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/climm/climm-0.6.2.ebuild,v 1.1 2008/03/04 20:49:02 jokey Exp $

DESCRIPTION="ICQ text-mode client with many features"
HOMEPAGE="http://www.climm.org/"
SRC_URI="http://www.climm.org/source/${P}.tgz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gloox gnutls otr tcl ssl"

DEPEND="gloox? ( net-libs/gloox )
ssl? (
|| ( gnutls? ( >=net-libs/gnutls-0.8.10 )
dev-libs/openssl ) )
tcl? ( dev-lang/tcl )
otr? ( >=net-libs/libotr-3.0.0 )"

pkg_setup() {
if use gloox && ! use ssl ; then
eerror "You need to set the ssl flag when you want to use the gloox"
eerror "Jabber library"
die "Set ssl or unset gloox for ${PN}"
fi
}

src_compile() {
local myconf
if use ssl ; then
if ! use gnutls ; then
elog "Using openSSL"
myconf="--enable-ssl=openssl"
else
elog "Using gnutls"
myconf="--enable-ssl=gnutls"
fi
else
myconf="--disable-ssl"
fi

econf \
$(use_enable gloox) \
$(use_enable otr) \
$(use_enable ssl) \
$(use_enable tcl) \
${myconf} \
|| die "econf failed"

emake || die "emake failed"
}

src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog FAQ INSTALL NEWS README TODO
}

metadata.xml




net-im

jokey@gentoo.org
Markus Ullmann