diff --git a/net-irc/libircclient/libircclient-1.3.ebuild b/net-irc/libircclient/libircclient-1.3.ebuild new file mode 100644 --- /dev/null +++ b/net-irc/libircclient/libircclient-1.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=2 + +inherit autotools base + +DESCRIPTION="Implements the client-side of the Internet Relah Chat protocol" +HOMEPAGE="http://libircclient.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="examples ipv6 threads" + +DEPEND="" +RDEPEND="" + +src_prepare() { + rm configure.in || die + epatch "${FILESDIR}"/${P}-autotools.patch + + eautoreconf +} + +src_configure() { + econf --disable-debug \ + $(use_enable ipv6) \ + $(use_enable threads) \ + $(use_enable examples) +}