blob: d76e9359078d74df3806c08f8e28924ebb3a6a88 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/ekg2/ekg2-20040819.ebuild,v 1.3 2004/08/24 10:12:59 sekretarz Exp $
DESCRIPTION="Text based Instant Messenger client that supports many protocols like Jabber and Gadu-Gadu"
HOMEPAGE="http://www.ekg2.org/"
SRC_URI="http://dev.gentoo.org/~sekretarz/distfiles/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="gpm ssl spell jpeg"
DEPEND=">=dev-libs/expat-1.95.6
>=net-libs/gnutls-1.0.17
gpm? ( >=sys-libs/gpm-1.20.1 )
ssl? ( >=dev-libs/openssl-0.9.6m )
jpeg? ( >=media-libs/jpeg-6b-r2 )
spell? ( >=app-text/aspell-0.50.5 )"
#RDEPEND=""
S=${WORKDIR}/${P}
src_compile() {
econf \
--with-pthread \
--with-libgadu \
`use_with gpm gpm-mouse` \
`use_with ssl openssl` \
`use_with jpeg libjpeg` \
`use_with spell aspell` \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
einstall || die
}
|