# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-p2p/microdc2/microdc2-0.15.6.ebuild,v 1.1 2007/01/16 13:34:58 armin76 Exp $ DESCRIPTION="A small command-line based Direct Connect client" HOMEPAGE="http://corsair626.no-ip.org/microdc/" SRC_URI="http://corsair626.no-ip.org/microdc/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="nls" DEPEND="sys-libs/ncurses >=sys-libs/readline-4 nls? ( sys-devel/gettext )" src_compile() { econf $(use_enable nls) || die "econf failed" emake || die "make failed" } src_install() { emake DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS ChangeLog NEWS README doc/* }