# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-nntp/nget/nget-0.27.1.ebuild,v 1.8 2006/02/17 19:39:22 josejx Exp $ inherit flag-o-matic DESCRIPTION="Network utility to retrieve files from an NNTP news server" HOMEPAGE="http://nget.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" RESTRICT="nomirror" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 arm ppc x86" IUSE="static debug ipv6 pcre zlib" RDEPEND="dev-libs/popt pcre? ( dev-libs/libpcre ) zlib? ( sys-libs/zlib )" DEPEND="dev-libs/uulib" src_compile() { use static && append-flags -static econf \ $(use_enable debug) \ $(use_enable ipv6) \ $(use_with pcre) \ $(use_with zlib) \ || die "econf failed" emake || die "emake failed" } src_install() { make \ prefix=${D}/usr \ mandir=${D}/usr/share/man \ infodir=${D}/usr/share/info \ install || die "install failed" dodoc Changelog FAQ README TODO newdoc .ngetrc ngetrc.sample } src_test() { true }