blob: e81be0cc37a815794a1033f90dd04b6ebd728530 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/ekg/ekg-1.3.ebuild,v 1.5 2004/02/22 22:43:29 agriffis Exp $
IUSE="ssl ncurses zlib python readline"
DESCRIPTION="EKG (Eksperymentalny Klient Gadu-Gadu) - a text client for Polish instant messaging system Gadu-Gadu"
SRC_URI="http://dev.null.pl/ekg/${P}.tar.gz"
HOMEPAGE="http://dev.null.pl/ekg/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc ~sparc ~alpha ~hppa ~mips "
DEPEND="ssl? ( >=dev-libs/openssl-0.9.6 )
ncurses? ( sys-libs/ncurses )
!ncurses? ( sys-libs/readline )
zlib? ( sys-libs/zlib )
python? ( dev-lang/python )"
src_compile() {
local myconf=""
use ssl || myconf="$myconf --disable-openssl"
use ncurses || myconf="$myconf --disable-ui-ncurses --enable-ui-readline"
use zlib || myconf="$myconf --disable-zlib"
econf ${myconf} || die
emake || die
}
src_install() {
einstall || die
dodoc docs/*
}
|