# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-irc/irssi-svn/irssi-svn-0.3.ebuild,v 1.20 2007/01/07 16:43:36 swegener Exp $ inherit subversion perl-module flag-o-matic ESVN_REPO_URI="http://svn.irssi.org/repos/irssi/trunk" ESVN_PROJECT="irssi" ESVN_BOOTSTRAP="NOCONFIGURE=1 ./autogen.sh" DESCRIPTION="A modular textUI IRC client with IPv6 support" HOMEPAGE="http://irssi.org/" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86" IUSE="ipv6 perl ssl socks5" RDEPEND="sys-libs/ncurses >=dev-libs/glib-2.2.1 ssl? ( dev-libs/openssl ) perl? ( dev-lang/perl ) socks5? ( >=net-proxy/dante-1.1.18 )" DEPEND="${RDEPEND} >=dev-util/pkgconfig-0.9.0 >=sys-devel/autoconf-2.58 dev-lang/perl www-client/lynx" RDEPEND="${RDEPEND} perl? ( !net-im/silc-client ) !net-irc/irssi" src_unpack() { subversion_src_unpack # We need to create the ChangeLog here TZ=UTC svn log -v "${ESVN_REPO_URI}" >ChangeLog } src_compile() { econf \ --with-proxy \ --with-ncurses \ --with-perl-lib=vendor \ $(use_with perl) \ $(use_with socks5 socks) \ $(use_enable ssl) \ $(use_enable ipv6) \ || die "econf failed" emake || die "emake failed" } src_install() { make \ DESTDIR="${D}" \ docdir=/usr/share/doc/${PF} \ install || die "make install failed" use perl && fixlocalpod dodoc AUTHORS ChangeLog README TODO NEWS || die "dodoc failed" }