blob: 702a66128756cee678bad87c6b73366c7e9c77c7 (
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
62
63
64
65
66
67
68
69
70
71
|
post_install() {
cat << EOM
=== pentaxpj-filter ===
NOTE: In order to use the Pentax PocketJet II/ 200 with CUPS,
after installing the printer in CUPS you most probably need to
modify the printer's PPD file (will be under /etc/cups/ppd/ after
installation in CUPS):
In the line
*FoomaticRIPCommandLine: "pentaxpj%B"
replace
pentaxpj
with
pentaxpj_sh
(so the line reads like
*FoomaticRIPCommandLine: "pentaxpj_sh%B"
).
Otherwise, you most probably will get a "Filter failed"-error in CUPS
and /var/log/cups/error.log will show
Process is dying with \"Encountered error Broken pipe during fwrite\"
---
Also, the paper dimensions seem wrong: CUPS test page margin is not printed
on right and bottom edge. And the left edge can be made smaller.
To fix, alter the PPD file e.g. as follows:
Old:
*HWMargins: 18 36 18 36
To new:
*% Changed from defaults to make the whole fit on the paper (only tested for A4): Increased bottom margin; decreased left margin.
*HWMargins: 9 72 9 36
Old:
*ImageableArea Letter/Letter: "18 36 594 756"
*ImageableArea A4/A4: "18 36 577 806"
*ImageableArea Legal/Legal: "18 36 594 972"
To new:
*% Changed from defaults to make the whole fit on the paper (only tested for A4, guessed for the other ones based on A4 tests): Increased right and bottom margins; decreased left margin.
*ImageableArea Letter/Letter: "9 72 570 756"
*ImageableArea A4/A4: "9 72 570 806"
*ImageableArea Legal/Legal: "9 72 570 972"
---
Or just use the package 'pentaxpj-cups' instead of 'pentaxpj-filter' to have readymade PPDs!
=== /pentaxpj-filter ===
EOM
}
post_upgrade() {
post_install
}
|