blob: fbe0641da4b9ff1261884ce843cac57537360981 (
plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#!/bin/sh -e
## logo_docs.dpatch.dpatch by Aurelien Jarno <aurel32@debian.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: No description.
if [ $# -ne 1 ]; then
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
exit 1
fi
[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
case "$1" in
-patch) patch $patch_opts -p1 < $0;;
-unpatch) patch $patch_opts -p1 -R < $0;;
*)
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
exit 1;;
esac
exit 0
@DPATCH@
diff -urNad /scratch/xsane/xsane-0.91/doc/sane-backends-doc.html xsane-0.91/doc/sane-backends-doc.html
--- /scratch/xsane/xsane-0.91/doc/sane-backends-doc.html 2003-06-03 23:31:25.000000000 +0200
+++ xsane-0.91/doc/sane-backends-doc.html 2003-06-03 23:37:13.000000000 +0200
@@ -10,7 +10,7 @@
<body text="#000000" bgcolor="#FFFFFF" link="#0000EF" vlink="#51188E" alink="#FF0000">
<dd>
-<img SRC="sane-logo2.jpg" height=150 width=128 align=LEFT></dd>
+<img SRC="xsane-logo2.jpg" height=150 width=128 align=LEFT></dd>
<blockquote>
<h1>
diff -urNad /scratch/xsane/xsane-0.91/doc/sane-problems-doc.html xsane-0.91/doc/sane-problems-doc.html
--- /scratch/xsane/xsane-0.91/doc/sane-problems-doc.html 2003-06-03 23:31:25.000000000 +0200
+++ xsane-0.91/doc/sane-problems-doc.html 2003-06-03 23:37:30.000000000 +0200
@@ -10,7 +10,7 @@
<body text="#000000" bgcolor="#FFFFFF" link="#0000EF" vlink="#51188E" alink="#FF0000">
<dd>
-<img SRC="sane-logo2.jpg" height=150 width=128 align=LEFT></dd>
+<img SRC="xsane-logo2.jpg" height=150 width=128 align=LEFT></dd>
<blockquote>
<br>
diff -urNad /scratch/xsane/xsane-0.91/doc/sane-scantips-doc.html xsane-0.91/doc/sane-scantips-doc.html
--- /scratch/xsane/xsane-0.91/doc/sane-scantips-doc.html 2003-06-03 23:31:25.000000000 +0200
+++ xsane-0.91/doc/sane-scantips-doc.html 2003-06-03 23:37:25.000000000 +0200
@@ -10,7 +10,7 @@
<body text="#000000" bgcolor="#FFFFFF" link="#0000EF" vlink="#51188E" alink="#FF0000">
<dd>
-<img SRC="sane-logo2.jpg" height=150 width=128 align=LEFT></dd>
+<img SRC="xsane-logo2.jpg" height=150 width=128 align=LEFT></dd>
<blockquote>
<h1>
|