blob: 4ac02577c15714807bc63c7ef44fa679a8935b16 (
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
58
59
60
61
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/sim/sim-0.8.3.ebuild,v 1.4 2003/10/10 08:48:27 aliz Exp $
if [ $( use kde ) ]; then
inherit kde-base eutils
need-kde 3
else
inherit base kde-functions eutils
need-qt 3
fi
LICENSE="GPL-2"
DESCRIPTION="An ICQ v8 Client. Supports File Transfer, Chat, Server-Side Contactlist, ..."
SRC_URI="mirror://sourceforge/sim-icq/${P}.tar.gz"
HOMEPAGE="http://sim-icq.sourceforge.net"
KEYWORDS="x86 ~ppc"
SLOT="0"
IUSE="ssl kde"
newdepend "ssl? ( dev-libs/openssl )"
DEPEND="$DEPEND sys-devel/flex"
src_unpack() {
unpack ${A} ; cd ${S}
epatch ${FILESDIR}/${P}-nostl.diff
}
src_compile() {
if [ -n "`use ssl`" ]; then
myconf="$myconf --enable-openssl"
else
myconf="$myconf --disable-openssl"
fi
if [ -n "`use kde`" ]; then
need-kde 3
myconf="$myconf --enable-kde"
else
need-qt 3
myconf="$myconf --disable-kde"
fi
need-automake 1.5
need-autoconf 2.5
make -f admin/Makefile.common
myconf="$myconf --without-gkrellm_plugin"
[ -n "`use kde`" ] && kde_src_compile myconf
myconf="$myconf --prefix=/usr"
econf $myconf --without-gkrellm $( use-enable kde ) $( use-enable ssl openssl ) || die
make || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc TODO README ChangeLog COPYING AUTHORS
}
|