diff options
author | ache <ache@FreeBSD.org> | 1996-09-14 00:59:32 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1996-09-14 00:59:32 +0000 |
commit | d6c37323fb817fdb090727536d1b5444ac80defd (patch) | |
tree | 8c1d33e59dd745257287456c346f94f715d92d2e /www/webcopy/files | |
parent | 2f583996ffb0a72cc4193028435c61b97463e7da (diff) | |
download | FreeBSD-ports-d6c37323fb817fdb090727536d1b5444ac80defd.zip FreeBSD-ports-d6c37323fb817fdb090727536d1b5444ac80defd.tar.gz |
Web Mirroring Program
Diffstat (limited to 'www/webcopy/files')
-rw-r--r-- | www/webcopy/files/patch-aa | 54 | ||||
-rw-r--r-- | www/webcopy/files/patch-ab | 23 |
2 files changed, 77 insertions, 0 deletions
diff --git a/www/webcopy/files/patch-aa b/www/webcopy/files/patch-aa new file mode 100644 index 0000000..8feb39c --- /dev/null +++ b/www/webcopy/files/patch-aa @@ -0,0 +1,54 @@ +*** Makefile.bak Sat Jun 8 20:42:14 1996 +--- Makefile Sat Sep 14 04:07:01 1996 +*************** +*** 32,40 **** + + # Select or change one of the following perl interpreters: + +! PERL=/usr/local/bin/perl + #PERL=/usr/local/ucb/perl +! #PERL=/usr/bin/perl + #PERL=/usr/ucb/perl + #PERL=/bin/perl + #PERL=$(HOME)/bin/perl +--- 32,40 ---- + + # Select or change one of the following perl interpreters: + +! #PERL=/usr/local/bin/perl + #PERL=/usr/local/ucb/perl +! PERL=/usr/bin/perl + #PERL=/usr/ucb/perl + #PERL=/bin/perl + #PERL=$(HOME)/bin/perl +*************** +*** 43,56 **** + + # Select or change one of the following WebCopy destination: + +! DESTINATION=webcopy.test + #DESTINATION=/usr/local/bin/webcopy + #DESTINATION=/usr/local/ucb/webcopy + #DESTINATION=/usr/bin/webcopy + #DESTINATION=/usr/ucb/webcopy + #DESTINATION=/bin/webcopy + #DESTINATION=$(HOME)/bin/webcopy +! #DESTINATION= + + # Select default perl interpreter version: + +--- 43,56 ---- + + # Select or change one of the following WebCopy destination: + +! #DESTINATION=webcopy.test + #DESTINATION=/usr/local/bin/webcopy + #DESTINATION=/usr/local/ucb/webcopy + #DESTINATION=/usr/bin/webcopy + #DESTINATION=/usr/ucb/webcopy + #DESTINATION=/bin/webcopy + #DESTINATION=$(HOME)/bin/webcopy +! DESTINATION=$(PREFIX)/bin/webcopy + + # Select default perl interpreter version: + diff --git a/www/webcopy/files/patch-ab b/www/webcopy/files/patch-ab new file mode 100644 index 0000000..02d3a11 --- /dev/null +++ b/www/webcopy/files/patch-ab @@ -0,0 +1,23 @@ +*** webcopy.src.orig Sat Jun 8 20:42:14 1996 +--- webcopy.src Sat Sep 14 04:30:41 1996 +*************** +*** 1,4 **** +! #!%PERL% -- # -*- perl -*- + eval 'exec %PERL% -S $0 "$*"' + if undef; + # +--- 1,4 ---- +! #!%PERL% -- + eval 'exec %PERL% -S $0 "$*"' + if undef; + # +*************** +*** 275,280 **** +--- 275,281 ---- + &check_tag("OVERLAY", "SRC", $image) || + &check_tag("BODY", "BACKGROUND", $image) || + &check_tag("TABLE", "BACKGROUND", $image) || ++ &check_tag("EMBED", "SRC", $image) || + &check_tag("BGSOUND", "SRC", $image) || + &check_tag("FRAME", "SRC", $link) || + &check_tag("AREA", "HREF", $link) || |