blob: 0980eb92a3aaa35ea0180c06ea96d54d29a3f09f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# 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.4 2008/01/08 17:38:53 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-0.9 )
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
}
|