diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-01-02 02:37:38 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-01-02 02:37:38 +0000 |
commit | 1841950a40ceec9b50fa6a91bd419acfa8f91585 (patch) | |
tree | cf4e7e9112fd8533bdcd242d62e333c32ba4a70b /net-www/http-fetcher | |
parent | version bump (diff) | |
download | gentoo-2-1841950a40ceec9b50fa6a91bd419acfa8f91585.tar.gz gentoo-2-1841950a40ceec9b50fa6a91bd419acfa8f91585.tar.bz2 gentoo-2-1841950a40ceec9b50fa6a91bd419acfa8f91585.zip |
dependency of net-www/fetch
Diffstat (limited to 'net-www/http-fetcher')
-rw-r--r-- | net-www/http-fetcher/ChangeLog | 11 | ||||
-rw-r--r-- | net-www/http-fetcher/files/digest-http-fetcher-1.0.1 | 1 | ||||
-rw-r--r-- | net-www/http-fetcher/http-fetcher-1.0.1.ebuild | 30 |
3 files changed, 42 insertions, 0 deletions
diff --git a/net-www/http-fetcher/ChangeLog b/net-www/http-fetcher/ChangeLog new file mode 100644 index 000000000000..015472ca2313 --- /dev/null +++ b/net-www/http-fetcher/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for net-www/http-fetcher +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/http-fetcher/ChangeLog,v 1.1 2003/01/02 02:37:38 mkennedy Exp $ + +*http-fetcher-1.0.1 (01 Jan 2003) + + 01 Jab 2003; Matthew Kennedy <mkennedy@gentoo.org> ChangeLog, + http-fetcher-1.0.1.ebuild, files/digest-http-fetcher-1.0.1 : + + Initial import. Dependency of net-www/fetch. + diff --git a/net-www/http-fetcher/files/digest-http-fetcher-1.0.1 b/net-www/http-fetcher/files/digest-http-fetcher-1.0.1 new file mode 100644 index 000000000000..49a19aef6bdb --- /dev/null +++ b/net-www/http-fetcher/files/digest-http-fetcher-1.0.1 @@ -0,0 +1 @@ +MD5 3fd1b6c1cada35279f08bf6874dab98e http_fetcher-1.0.1.tar.gz 173544 diff --git a/net-www/http-fetcher/http-fetcher-1.0.1.ebuild b/net-www/http-fetcher/http-fetcher-1.0.1.ebuild new file mode 100644 index 000000000000..f611a18a373f --- /dev/null +++ b/net-www/http-fetcher/http-fetcher-1.0.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/http-fetcher/http-fetcher-1.0.1.ebuild,v 1.1 2003/01/02 02:37:38 mkennedy Exp $ + +DESCRIPTION="HTTP Fetcher is a small, robust, flexible library for downloading files via HTTP using the GET method." +HOMEPAGE="http://cs.nmu.edu/~lhanson/http_fetcher/" +SRC_URI="http://cs.nmu.edu/~lhanson/http_fetcher/dls/${P/-/_}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +DEPEND="virtual/glibc" + +S=${WORKDIR}/${P/-/_} + +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 + dohtml -r docs/index.html docs/html + dodoc README ChangeLog INSTALL LICENSE +} |