blob: 40b113a6bf398c2ecd473f0515bf4db841f1aa66 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/ircii/ircii-20060725.ebuild,v 1.7 2011/12/02 00:35:24 binki 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/"
RDEPEND="sys-libs/ncurses"
# This and irc-client both install /usr/bin/irc #247987
RDEPEND="${DEPEND}
>=sys-apps/sed-4
!net-irc/irc-client"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ~ppc sparc x86"
src_compile() {
econf $(use_enable ipv6) || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake -j1 DESTDIR="${D}" install || die "make install failed"
dodoc ChangeLog INSTALL NEWS README \
doc/Copyright doc/crypto doc/VERSIONS doc/ctcp \
|| die "dodoc failed"
}
|