You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-irc/irc-client/irc-client-2.10.3_p7.ebuild

36 lines
892 B

# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/irc-client/irc-client-2.10.3_p7.ebuild,v 1.6 2009/09/23 18:44:17 patrick Exp $
MY_P=irc${PV/_/}
DESCRIPTION="A simplistic RFC compliant IRC client"
HOMEPAGE="http://www.irc.org"
SRC_URI="ftp://ftp.irc.org/irc/server/${MY_P}.tgz"
LICENSE="GPL-1"
SLOT="0"
KEYWORDS="ppc x86"
IUSE="ipv6"
DEPEND="sys-libs/ncurses
sys-libs/zlib"
S=${WORKDIR}/${MY_P}
src_compile () {
econf \
`use_with ipv6 ip6` \
--sysconfdir=/etc/ircd \
--localstatedir=/var/run/ircd \
|| die "econf failed"
emake -C ${CHOST} client || die "client build failed"
}
src_install() {
make -C ${CHOST} \
prefix=${D}/usr \
client_man_dir=${D}/usr/share/man/man1 \
install-client || die "client installed failed"
dodoc doc/Etiquette doc/alt-irc-faq doc/rfc*
}