summaryrefslogtreecommitdiff
path: root/ftp/wget-devel
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2001-09-16 01:02:46 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2001-09-16 01:02:46 +0000
commitdb3dca6dbd32fe6ea3d51bc037e6f9cdc66c343b (patch)
tree29d590ca0bc9e66d81bc3218a0684c2daf9d4a68 /ftp/wget-devel
parentFix compilation problems. (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_4_0'.release/4.4.0
Notes
Notes: svn path=/head/; revision=47856 svn path=/tags/RELEASE_4_4_0/; revision=47857; tag=release/4.4.0
Diffstat (limited to 'ftp/wget-devel')
-rw-r--r--ftp/wget-devel/Makefile52
-rw-r--r--ftp/wget-devel/distinfo2
-rw-r--r--ftp/wget-devel/files/patch-ac11
-rw-r--r--ftp/wget-devel/files/patch-host.c11
-rw-r--r--ftp/wget-devel/files/patch-retr.c21
-rw-r--r--ftp/wget-devel/pkg-comment1
-rw-r--r--ftp/wget-devel/pkg-descr11
-rw-r--r--ftp/wget-devel/pkg-plist26
8 files changed, 0 insertions, 135 deletions
diff --git a/ftp/wget-devel/Makefile b/ftp/wget-devel/Makefile
deleted file mode 100644
index 201749c2d0a0..000000000000
--- a/ftp/wget-devel/Makefile
+++ /dev/null
@@ -1,52 +0,0 @@
-# Ports collection makefile for: wget
-# Date created: 31 December 1996
-# Whom: Thomas Gellekum <tg@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= wget
-PORTVERSION= 1.7
-PORTREVISION= 3
-CATEGORIES= ftp www ipv6
-MASTER_SITES= ${MASTER_SITE_GNU} \
- ftp://ftp.dl.ac.uk/ccp14/ftp-mirror/wget/pub/unix/util/wget/ \
- ftp://ftp.informatik.hu-berlin.de/gnu/wget/ \
- ftp://ftp.uni-mainz.de/pub/gnu/wget/ \
- ftp://ftp.max.irk.ru/unix/net/www/wget/
-MASTER_SITE_SUBDIR= wget
-
-PATCH_SITES= ftp://ftp.kame.net/pub/kame/misc/ \
- ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/kame/misc/&,}
-PATCHFILES= wget-17-v6-20010716a.diff.gz
-PATCH_DIST_STRIP= -p1
-
-MAINTAINER= sf@FreeBSD.org
-
-BUILD_DEPENDS= msgfmt-new:${PORTSDIR}/devel/gettext-devel
-LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext
-
-.if !defined(WITHOUT_SSL)
-USE_OPENSSL= yes
-CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE}
-.endif
-USE_GMAKE= yes
-GNU_CONFIGURE= yes
-CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include \
- LIBS=-L${LOCALBASE}/lib \
- MSGFMT=${LOCALBASE}/bin/msgfmt-new \
- XGETTEXT=${LOCALBASE}/bin/xgettext-new
-
-MAN1= wget.1
-
-post-patch:
-# made by broken KAME patch. Already contacted.
- @${RM} -f ${WRKSRC}/po/zh.po*
-
-pre-build:
- @${RM} -f ${WRKSRC}/doc/wget.info*
-
-post-install:
- install-info ${PREFIX}/info/wget.info ${PREFIX}/info/dir
-
-.include <bsd.port.mk>
diff --git a/ftp/wget-devel/distinfo b/ftp/wget-devel/distinfo
deleted file mode 100644
index 97763e456b6d..000000000000
--- a/ftp/wget-devel/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (wget-1.7.tar.gz) = c911a6b937c0a18757d3211fb62831de
-MD5 (wget-17-v6-20010716a.diff.gz) = 95664b130be966834f7770d66d03654b
diff --git a/ftp/wget-devel/files/patch-ac b/ftp/wget-devel/files/patch-ac
deleted file mode 100644
index 5fba79b376b3..000000000000
--- a/ftp/wget-devel/files/patch-ac
+++ /dev/null
@@ -1,11 +0,0 @@
---- doc/Makefile.in.orig Sun Dec 31 14:07:09 2000
-+++ doc/Makefile.in Mon Jan 15 04:52:47 2001
-@@ -22,7 +22,7 @@
- SHELL = /bin/sh
-
- # Program to format Texinfo source into Info files.
--MAKEINFO = @MAKEINFO@
-+MAKEINFO = @MAKEINFO@ --no-split
- # Program to format Texinfo source into DVI files.
- TEXI2DVI = texi2dvi
- # Program to convert DVI files to PostScript
diff --git a/ftp/wget-devel/files/patch-host.c b/ftp/wget-devel/files/patch-host.c
deleted file mode 100644
index 9495ff9ec250..000000000000
--- a/ftp/wget-devel/files/patch-host.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/host.c.orig Thu Aug 9 10:11:56 2001
-+++ src/host.c Thu Aug 9 10:12:27 2001
-@@ -106,7 +106,7 @@
-
- hp = gethostbyname2(name, af);
- if (!hp) {
-- if (inet_pton(af, name, addr) != -1) {
-+ if (inet_pton(af, name, addr) == 1) {
- switch (af) {
- case AF_INET:
- socksize = sizeof (struct sockaddr_in);
diff --git a/ftp/wget-devel/files/patch-retr.c b/ftp/wget-devel/files/patch-retr.c
deleted file mode 100644
index dac6d57d6591..000000000000
--- a/ftp/wget-devel/files/patch-retr.c
+++ /dev/null
@@ -1,21 +0,0 @@
---- src/retr.c.orig Wed Feb 9 00:18:45 2000
-+++ src/retr.c Wed Feb 9 00:18:51 2000
-@@ -445,7 +445,7 @@
- recursive_reset ();
- for (cur_url = url_list; cur_url; cur_url = cur_url->next, ++*count)
- {
-- char *filename, *new_file;
-+ char *filename, *new_file, *referer;
- int dt;
-
- if (opt.quota && opt.downloaded > opt.quota)
-@@ -453,7 +453,8 @@
- status = QUOTEXC;
- break;
- }
-- status = retrieve_url (cur_url->url, &filename, &new_file, NULL, &dt);
-+ referer = getenv("referer");
-+ status = retrieve_url (cur_url->url, &filename, &new_file, referer, &dt);
- if (opt.recursive && status == RETROK && (dt & TEXTHTML))
- status = recursive_retrieve (filename, new_file ? new_file : cur_url->url);
-
diff --git a/ftp/wget-devel/pkg-comment b/ftp/wget-devel/pkg-comment
deleted file mode 100644
index 02883df00b8e..000000000000
--- a/ftp/wget-devel/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-Retrieve files from the 'net via HTTP and FTP
diff --git a/ftp/wget-devel/pkg-descr b/ftp/wget-devel/pkg-descr
deleted file mode 100644
index 6ed5aa61e463..000000000000
--- a/ftp/wget-devel/pkg-descr
+++ /dev/null
@@ -1,11 +0,0 @@
-Wget [formerly known as Geturl] is a freely available network utility
-to retrieve files from the World Wide Web using HTTP and FTP, the two
-most widely used Internet protocols. It works non-interactively, thus
-enabling work in the background, after having logged off.
-
-The recursive retrieval of HTML pages, as well as FTP sites is
-supported -- you can use Wget to make mirrors of archives and home
-pages, or traverse the web like a WWW robot (Wget understands
-/robots.txt).
-
-WWW: http://sunsite.auc.dk/wget/
diff --git a/ftp/wget-devel/pkg-plist b/ftp/wget-devel/pkg-plist
deleted file mode 100644
index 96543579d40c..000000000000
--- a/ftp/wget-devel/pkg-plist
+++ /dev/null
@@ -1,26 +0,0 @@
-bin/wget
-etc/wgetrc
-@unexec install-info --delete %D/info/wget.info %D/info/dir
-info/wget.info
-@exec install-info %D/info/wget.info %D/info/dir
-share/locale/cs/LC_MESSAGES/wget.mo
-share/locale/da/LC_MESSAGES/wget.mo
-share/locale/de/LC_MESSAGES/wget.mo
-share/locale/el/LC_MESSAGES/wget.mo
-share/locale/es/LC_MESSAGES/wget.mo
-share/locale/et/LC_MESSAGES/wget.mo
-share/locale/fr/LC_MESSAGES/wget.mo
-share/locale/gl/LC_MESSAGES/wget.mo
-share/locale/hr/LC_MESSAGES/wget.mo
-share/locale/it/LC_MESSAGES/wget.mo
-share/locale/ja/LC_MESSAGES/wget.mo
-share/locale/nl/LC_MESSAGES/wget.mo
-share/locale/no/LC_MESSAGES/wget.mo
-share/locale/pl/LC_MESSAGES/wget.mo
-share/locale/pt_BR/LC_MESSAGES/wget.mo
-share/locale/ru/LC_MESSAGES/wget.mo
-share/locale/sk/LC_MESSAGES/wget.mo
-share/locale/sl/LC_MESSAGES/wget.mo
-share/locale/sv/LC_MESSAGES/wget.mo
-share/locale/tr/LC_MESSAGES/wget.mo
-share/locale/zh_TW/LC_MESSAGES/wget.mo