diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2005-03-17 18:21:18 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2005-03-17 18:21:18 +0000 |
commit | ed0bec0283a9093ca41f1b504203ab371d5d866c (patch) | |
tree | 0a6a33cd1c64e0fffb3cd7ae7cd8972a791b5239 /www-client/fetch/fetch-1.0.ebuild | |
parent | Stable on sparc wrt #85547 (diff) | |
download | gentoo-2-ed0bec0283a9093ca41f1b504203ab371d5d866c.tar.gz gentoo-2-ed0bec0283a9093ca41f1b504203ab371d5d866c.tar.bz2 gentoo-2-ed0bec0283a9093ca41f1b504203ab371d5d866c.zip |
Moved from net-www/fetch to www-client/fetch.
Diffstat (limited to 'www-client/fetch/fetch-1.0.ebuild')
-rw-r--r-- | www-client/fetch/fetch-1.0.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/www-client/fetch/fetch-1.0.ebuild b/www-client/fetch/fetch-1.0.ebuild new file mode 100644 index 000000000000..97d7ed89f0f3 --- /dev/null +++ b/www-client/fetch/fetch-1.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/fetch/fetch-1.0.ebuild,v 1.1 2005/03/17 18:21:18 seemant Exp $ + +DESCRIPTION="Fetch is a simple, fast, and flexible HTTP download tool built on the HTTP Fetcher library." +HOMEPAGE="http://cs.nmu.edu/~lhanson/fetch/" +SRC_URI="http://cs.nmu.edu/~lhanson/fetch/dls/${P}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +DEPEND=">=dev-libs/http-fetcher-1.0.1" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc README INSTALL LICENSE + dohtml docs/*.html +} |