blob: ff85781d9b480762b1ede048f84e40aa79b83bb9 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/ircii/ircii-20030709-r2.ebuild,v 1.6 2004/05/29 16:16:27 pvdabeel Exp $
IUSE="ipv6"
DESCRIPTION="ircII is an IRC and ICB client that runs under most UNIX platforms."
SRC_URI="ftp://ircii.warped.com/pub/ircII/${P}.tar.bz2"
HOMEPAGE="http://www.eterna.com.au/ircii/"
DEPEND="sys-libs/ncurses
>=sys-apps/sed-4"
RDEPEND="sys-libs/ncurses"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 amd64 ~sparc ~ppc"
src_compile() {
# `use_with socks socks5` <- isn't socks5 working?
econf `use_enable ipv6` || die
emake || die "make failed"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
prepalldocs
dodoc ChangeLog INSTALL NEWS README
dodoc doc/Copyright doc/crypto doc/VERSIONS doc/ctcp
}
|