summaryrefslogtreecommitdiff
path: root/www/wwwoffle
diff options
context:
space:
mode:
authorfredb <fredb>2002-04-25 10:43:26 +0000
committerfredb <fredb>2002-04-25 10:43:26 +0000
commit8234836a52a60f547773b5ce0c636910d2bb6883 (patch)
treeb7e5c34427309da02750f262faeb97d3ca575707 /www/wwwoffle
parent4558c1f54de0cd8fe2865b023c4882db708e411c (diff)
downloadpkgsrc-8234836a52a60f547773b5ce0c636910d2bb6883.tar.gz
Update wwwoffle to 2.7b (from NEWS):
Bug Fixes: Ensure that only one argument is given to wwwoffle -o or -O. Some more version 2.7 documentation updates. Fix crash using 'wwwoffle -O|-o|-put|-post <URL>'. Put refresh URLs in the outgoing directory with correct URL. Delete auto-generated files in Makefile before re-generating. Choosing 'edit selected item' in configuration pages shows current values. Fix potential crash with wwwoffle-hash. Put a DESTDIR variable in Makefile for easier installation. Fix parsing IPv6 addresses in audit-usage.pl script. Makefile change for FreeBSD make. Bug fix for the Alias section of the config file. Fix Makefile for Win32. New Features: Allow CGI scripts to be used with the built-in web server.
Diffstat (limited to 'www/wwwoffle')
-rw-r--r--www/wwwoffle/Makefile6
-rw-r--r--www/wwwoffle/distinfo9
-rw-r--r--www/wwwoffle/patches/patch-aa10
-rw-r--r--www/wwwoffle/patches/patch-ab14
4 files changed, 12 insertions, 27 deletions
diff --git a/www/wwwoffle/Makefile b/www/wwwoffle/Makefile
index 9d27a4d0299..7f97d057662 100644
--- a/www/wwwoffle/Makefile
+++ b/www/wwwoffle/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.35 2002/03/25 09:17:55 fredb Exp $
+# $NetBSD: Makefile,v 1.36 2002/04/25 10:43:26 fredb Exp $
-DISTNAME= wwwoffle-2.7a
-PKGNAME= wwwoffle-2.7.1
+DISTNAME= wwwoffle-2.7b
+PKGNAME= wwwoffle-2.7.2
CATEGORIES= www
MASTER_SITES= ftp://ftp.demon.co.uk/pub/unix/httpd/ \
http://www.gedanken.freeserve.co.uk/download-wwwoffle/ \
diff --git a/www/wwwoffle/distinfo b/www/wwwoffle/distinfo
index a3e85b73767..feaea93f798 100644
--- a/www/wwwoffle/distinfo
+++ b/www/wwwoffle/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.9 2002/03/25 08:50:00 fredb Exp $
+$NetBSD: distinfo,v 1.10 2002/04/25 10:43:26 fredb Exp $
-SHA1 (wwwoffle-2.7a.tgz) = 124cf3b5700f3574e00f40ecd2d4fa9f7bf728a1
-Size (wwwoffle-2.7a.tgz) = 846376 bytes
-SHA1 (patch-aa) = 580868aed26f02378db32303f8a16fb178ca92dd
-SHA1 (patch-ab) = 30f40b7e4726692e7c2a75e5ee85a5f047911e36
+SHA1 (wwwoffle-2.7b.tgz) = fb9d8c4a374e9fe1c339537af756896f6dd1172d
+Size (wwwoffle-2.7b.tgz) = 857511 bytes
+SHA1 (patch-aa) = 897de385a47826e16a8a09b1bc1c207a2d350f94
diff --git a/www/wwwoffle/patches/patch-aa b/www/wwwoffle/patches/patch-aa
index 02f9189327a..865abbfa561 100644
--- a/www/wwwoffle/patches/patch-aa
+++ b/www/wwwoffle/patches/patch-aa
@@ -1,13 +1,13 @@
-$NetBSD: patch-aa,v 1.16 2002/03/10 22:14:30 fredb Exp $
+$NetBSD: patch-aa,v 1.17 2002/04/25 10:43:26 fredb Exp $
---- doc/Makefile.in.orig Sun Mar 10 14:14:34 2002
+--- doc/Makefile.in.orig Sun Apr 21 11:53:25 2002
+++ doc/Makefile.in
@@ -22,7 +22,7 @@
prefix=@prefix@
- mandir=@mandir@
--docdir=${prefix}/doc/wwwoffle
-+docdir=${prefix}/share/doc/wwwoffle
+ mandir=$(DESTDIR)@mandir@
+-docdir=$(DESTDIR)${prefix}/doc/wwwoffle
++docdir=$(DESTDIR)${prefix}/share/doc/wwwoffle
SPOOLDIR=@SPOOLDIR@
CONFDIR=@CONFDIR@
diff --git a/www/wwwoffle/patches/patch-ab b/www/wwwoffle/patches/patch-ab
deleted file mode 100644
index 3a47da1c63c..00000000000
--- a/www/wwwoffle/patches/patch-ab
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-ab,v 1.5 2002/03/23 22:48:09 fredb Exp $
-
---- src/parse.c.orig Sun Jan 20 04:54:12 2002
-+++ src/parse.c
-@@ -208,7 +208,8 @@
- else
- strcat(url,"?");
-
-- sprintf(url+strlen(url),"!%s:%s.%08lx",(*request_head)->method,MakeHash((*request_body)->content),time(NULL));
-+ if (snprintf(url+strlen(url),40,"!%s:%s.%08lx",(*request_head)->method,MakeHash((*request_body)->content),time(NULL)) >= 40)
-+ {free(url);return(NULL);}
- }
-
- return(url);