1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
#! /bin/sh -e
## 08manpages by MJ Ray
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Update website URL and example in man pages
## DP: (Closes: #322258,#322259)
if [ $# -ne 1 ]; then
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
exit 1
fi
case "$1" in
-patch) patch -f --no-backup-if-mismatch --dry-run -p1 < $0 && patch -f --no-backup-if-mismatch -p1 < $0;;
-unpatch) patch -f --no-backup-if-mismatch -R -p1 < $0;;
*)
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
exit 1;;
esac
exit 0
@DPATCH@
diff -Nuar efax-0.9a.orig/efax.1 efax-0.9a/efax.1
--- efax-0.9a.orig/efax.1 2000-02-24 15:35:30.000000000 +0000
+++ efax-0.9a/efax.1 2005-10-02 14:44:05.000000000 +0100
@@ -1177,7 +1177,7 @@
patches is available at:
.IP
.ft CW
-http://casas.ee.ubc.ca/efax/
+http://www.cce.com/efax/
.ft P
.LP
--- efax-0.9a.orig/fax.1 1999-03-04 16:07:56.000000000 +0000
+++ efax-0.9a/fax.1 2005-10-02 14:47:31.000000000 +0100
@@ -83,7 +83,7 @@
Assignments of the form \fIVARIABLE\fB=\fIvalue\fR may appear
before the command name to temporarily change the values of most
-fax script variables (e.g. ``fax PAGE=A4 print letter.001'')
+fax script variables (e.g. ``fax PAGE=a4 print letter.001'')
.SH DESCRIPTION
|