summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2003-06-23 07:06:11 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2003-06-23 07:06:11 +0000
commit1f330e9b1633b24fdb322401fd3d1e0bb669b064 (patch)
treefe25fa2866ae0c8a257fc4bc0fbe5a87a5d71fbe /net-www
parentMoving from net-www to dev-libs (diff)
downloadgentoo-2-1f330e9b1633b24fdb322401fd3d1e0bb669b064.tar.gz
gentoo-2-1f330e9b1633b24fdb322401fd3d1e0bb669b064.tar.bz2
gentoo-2-1f330e9b1633b24fdb322401fd3d1e0bb669b064.zip
Moving to dev-libs
Diffstat (limited to 'net-www')
-rw-r--r--net-www/http-fetcher/ChangeLog28
-rw-r--r--net-www/http-fetcher/Manifest9
-rw-r--r--net-www/http-fetcher/files/buffer-overflow-gentoo.patch35
-rw-r--r--net-www/http-fetcher/files/digest-http-fetcher-1.0.11
-rw-r--r--net-www/http-fetcher/files/digest-http-fetcher-1.0.1-r11
-rw-r--r--net-www/http-fetcher/files/digest-http-fetcher-1.0.21
-rw-r--r--net-www/http-fetcher/files/errno-link-gentoo.patch20
-rw-r--r--net-www/http-fetcher/http-fetcher-1.0.1-r1.ebuild38
-rw-r--r--net-www/http-fetcher/http-fetcher-1.0.1.ebuild30
-rw-r--r--net-www/http-fetcher/http-fetcher-1.0.2.ebuild26
10 files changed, 0 insertions, 189 deletions
diff --git a/net-www/http-fetcher/ChangeLog b/net-www/http-fetcher/ChangeLog
deleted file mode 100644
index fb5b7f6ca0f9..000000000000
--- a/net-www/http-fetcher/ChangeLog
+++ /dev/null
@@ -1,28 +0,0 @@
-# ChangeLog for net-www/http-fetcher
-# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-www/http-fetcher/ChangeLog,v 1.5 2003/06/18 14:26:19 phosphan Exp $
-
-*http-fetcher-1.0.2 (18 Jun 2003)
-
- 18 Jun 2003; Patrick Kursawe <phosphan@gentoo.org>
- http-fetcher-1.0.2.ebuild:
- Bump to 1.0.2 - request by package author in bug 20075
-
-*http-fetcher-1.0.1-r1 (06 Jan 2003)
-
- 24 Mar 2003; Matthew Kennedy <mkennedy@gentoo.org>
- http-fetcher-1.0.1-r1.ebuild:
- patch source to fix errno glib2.3.2 linking problems
-
- 06 Jan 2003; Matthew Kennedy <mkennedy@gentoo.org> ChangeLog,
- http-fetcher-1.0.1-r1.ebuild, files/buffer-overflow-gentoo.patch,
- files/digest-http-fetcher-1.0.1-r1 :
-
- Applies a fix for a buffer overflow problem.
-
-*http-fetcher-1.0.1 (01 Jan 2003)
-
- 01 Jan 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/Manifest b/net-www/http-fetcher/Manifest
deleted file mode 100644
index 9debbfdf3b9d..000000000000
--- a/net-www/http-fetcher/Manifest
+++ /dev/null
@@ -1,9 +0,0 @@
-MD5 191201b4e0a39ed9fff0fe237db36abc http-fetcher-1.0.1.ebuild 875
-MD5 47990ace11b248a9d984eb0e45815e79 http-fetcher-1.0.2.ebuild 733
-MD5 6175022c6040e6c1db18ca1ce4d9540e ChangeLog 1008
-MD5 fc4cef2a2d88880b33e15964bffaa7c5 http-fetcher-1.0.1-r1.ebuild 1143
-MD5 986a8927fbf78398c94af18534ae8786 files/digest-http-fetcher-1.0.1-r1 70
-MD5 5bed14995f10b0fafebd610a6b74deaf files/buffer-overflow-gentoo.patch 1173
-MD5 986a8927fbf78398c94af18534ae8786 files/digest-http-fetcher-1.0.1 70
-MD5 eac0ac4773ed1cbe44374680c329353f files/digest-http-fetcher-1.0.2 70
-MD5 81ec499439ffb3a7dd72c50fa3285a26 files/errno-link-gentoo.patch 584
diff --git a/net-www/http-fetcher/files/buffer-overflow-gentoo.patch b/net-www/http-fetcher/files/buffer-overflow-gentoo.patch
deleted file mode 100644
index ac54815a0758..000000000000
--- a/net-www/http-fetcher/files/buffer-overflow-gentoo.patch
+++ /dev/null
@@ -1,35 +0,0 @@
---- http_fetcher.c Tue Jul 31 03:47:15 2001
-+++ http_fetcher.patch.c Thu Jan 2 22:24:48 2003
-@@ -94,7 +94,7 @@
- * request */
- sprintf(requestBuf, "GET / %s\n", HTTP_VERSION);
- else
-- sprintf(requestBuf, "GET %s %s\n", charIndex, HTTP_VERSION);
-+ snprintf(requestBuf, sizeof(requestBuf)/4-1,"GET %s %s\n", charIndex, HTTP_VERSION);
-
- /* Null out the end of the hostname if need be */
- if(charIndex != NULL)
-@@ -102,13 +102,13 @@
- /* Use Host: even though 1.0 doesn't specify it. Some servers
- * won't play nice if we don't send Host, and it shouldn't hurt anything */
- strcat(requestBuf, "Host: ");
-- strcat(requestBuf, host);
-+ strncat(requestBuf, host, sizeof(requestBuf)/4-1);
- strcat(requestBuf, "\n");
-
- if(!hideReferer && referer != NULL) /* NO default referer */
- {
- strcat(requestBuf, "Referer: ");
-- strcat(requestBuf, referer);
-+ strncat(requestBuf, referer, sizeof(requestBuf)/4-1);
- strcat(requestBuf, "\n");
- }
-
-@@ -123,7 +123,7 @@
- else if(!hideUserAgent)
- {
- strcat(requestBuf, "User-Agent: ");
-- strcat(requestBuf, userAgent);
-+ strncat(requestBuf, userAgent, sizeof(requestBuf)/4-1);
- strcat(requestBuf, "\n");
- }
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
deleted file mode 100644
index 49a19aef6bdb..000000000000
--- a/net-www/http-fetcher/files/digest-http-fetcher-1.0.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 3fd1b6c1cada35279f08bf6874dab98e http_fetcher-1.0.1.tar.gz 173544
diff --git a/net-www/http-fetcher/files/digest-http-fetcher-1.0.1-r1 b/net-www/http-fetcher/files/digest-http-fetcher-1.0.1-r1
deleted file mode 100644
index 49a19aef6bdb..000000000000
--- a/net-www/http-fetcher/files/digest-http-fetcher-1.0.1-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 3fd1b6c1cada35279f08bf6874dab98e http_fetcher-1.0.1.tar.gz 173544
diff --git a/net-www/http-fetcher/files/digest-http-fetcher-1.0.2 b/net-www/http-fetcher/files/digest-http-fetcher-1.0.2
deleted file mode 100644
index 6e838952469e..000000000000
--- a/net-www/http-fetcher/files/digest-http-fetcher-1.0.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 e522fc221e94fa1735667a5d61a72b78 http_fetcher-1.0.2.tar.gz 277015
diff --git a/net-www/http-fetcher/files/errno-link-gentoo.patch b/net-www/http-fetcher/files/errno-link-gentoo.patch
deleted file mode 100644
index 4ba2771291fa..000000000000
--- a/net-www/http-fetcher/files/errno-link-gentoo.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -ur http_fetcher-1.0.1/src/http_fetcher.c http_fetcher-1.0.1~/src/http_fetcher.c
---- http_fetcher-1.0.1/src/http_fetcher.c 2001-07-30 13:47:15.000000000 -0500
-+++ http_fetcher-1.0.1~/src/http_fetcher.c 2003-03-24 11:38:19.000000000 -0600
-@@ -24,6 +24,7 @@
- #include <netinet/in.h>
- #include <sys/types.h>
- #include <sys/time.h>
-+#include <errno.h>
- #include "http_fetcher.h"
-
- /* Globals */
-@@ -457,7 +458,6 @@
- */
- const char *http_strerror()
- {
-- extern int errno;
- extern int *sys_errlist[];
-
- if(errorSource == ERRNO)
-Only in http_fetcher-1.0.1~/src: http_fetcher.c~
diff --git a/net-www/http-fetcher/http-fetcher-1.0.1-r1.ebuild b/net-www/http-fetcher/http-fetcher-1.0.1-r1.ebuild
deleted file mode 100644
index ba2c5cd26e12..000000000000
--- a/net-www/http-fetcher/http-fetcher-1.0.1-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2003 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-r1.ebuild,v 1.3 2003/03/24 17:46:42 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_unpack () {
- unpack ${A}
- # source: InetCop Security Advisory, Bugtraq, 06 Jan 2003
- cd ${S}/src && patch -p0 <${FILESDIR}/buffer-overflow-gentoo.patch || die
- # glibc2.3.2 linking problems
- cd ${S} && patch -p1 <${FILESDIR}/errno-link-gentoo.patch || die
-}
-
-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
-}
diff --git a/net-www/http-fetcher/http-fetcher-1.0.1.ebuild b/net-www/http-fetcher/http-fetcher-1.0.1.ebuild
deleted file mode 100644
index f23af6e2f26f..000000000000
--- a/net-www/http-fetcher/http-fetcher-1.0.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2003 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.2 2003/02/13 15:35:40 vapier 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
-}
diff --git a/net-www/http-fetcher/http-fetcher-1.0.2.ebuild b/net-www/http-fetcher/http-fetcher-1.0.2.ebuild
deleted file mode 100644
index 4554f25a4260..000000000000
--- a/net-www/http-fetcher/http-fetcher-1.0.2.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2003 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.2.ebuild,v 1.1 2003/06/18 14:26:19 phosphan Exp $
-
-DESCRIPTION="HTTP Fetcher is a small, robust, flexible library for downloading files via HTTP using the GET method."
-HOMEPAGE="http://http-fetcher.sourceforge.net"
-SRC_URI="mirror://sourceforge/http-fetcher/${P/-/_}.tar.gz"
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE=""
-
-DEPEND="virtual/glibc"
-
-S=${WORKDIR}/${P/-/_}
-
-src_compile() {
- econf
- emake || die
-}
-
-src_install() {
- make DESTDIR=${D} install || die
- dohtml -r docs/index.html docs/html
- dodoc README ChangeLog INSTALL LICENSE
-}