blob: cec3602cdd3077dd12d17ea534978a744465a150 (
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
# $Id$
# This file is public domain. (Originally written by Karl Berry, 2009.)
e2p = ./epstopdf.pl #--debug
re2p = ./repstopdf --restricted
re2p_script = ./repstopdf
default: check
# These are not comprehensive tests by any means. Mostly we're just
# making sure we don't crash.
check: check-help check-version \
check-help-r \
check-nogs \
check-restricted-gscmd \
check-filter check-filter-outfile check-write-error check-gscmd \
check-simple check-atend check-binary check-bin2 \
check-binhdr-lf check-binhdr-cr check-binhdr-crlf \
# needs new kpsewhich: check-restricted-safe-in check-restricted-safe-out
check-help:
$(e2p) --help
check-version:
$(e2p) --version
check-help-r: $(re2p_script)
$(re2p_script) --help | grep restricted # should have default=true
check-nogs:
$(e2p) --no-gs test-simple.eps >test-simple.out
# the two files should be different:
cmp -s test-simple.eps test-simple.out || exit 0
$(re2p_script):
ln -s epstopdf.pl $@
check-restricted-gscmd:
! $(re2p) --gscmd=/bin/unsafe test-simple.eps
! $(re2p) --gscmd=unsafe test-simple.eps
check-restricted-safe-in:
! $(re2p) /unsafe/in.eps
check-restricted-safe-out:
! $(re2p) test-simple.eps -o /unsafe/out.eps
check-filter:
cat test-simple.eps | $(e2p) --filter >test-filter.pdf
pdfinfo test-filter.pdf | grep "Page size:"
check-filter-outfile:
rm -f test-filter.pdf
cat test-simple.eps | $(e2p) --filter --outfile=test-filter.pdf
pdfinfo test-filter.pdf | grep "Page size:"
#
rm -f test-filter.pdf
cat test-simple.eps | $(e2p) --outfile=test-filter.pdf --filter
pdfinfo test-filter.pdf | grep "Page size:"
check-write-error:
-$(e2p) test-simple.eps --outfile=/dev/full
check-gscmd:
-$(e2p) --gscmd=true test-simple.eps
check-simple:
$(MAKE) file=test-simple check1
check-atend:
$(MAKE) file=test-atend check1
check-binary:
$(MAKE) file=test-binary check1
check-bin2:
$(MAKE) file=test-bin2 check1
check-binhdr-lf:
$(MAKE) file=test-binhdr-lf check1
check-binhdr-cr:
$(MAKE) file=test-binhdr-cr check1
check-binhdr-crlf:
$(MAKE) file=test-binhdr-crlf check1
check1:
$(e2p) $(file).eps
pdfinfo $(file).pdf | grep "Page size"
dist: epstopdf.tar.gz epstopdf.html
epstopdf.tar.gz: README epstopdf.pl epstopdf.1 epstopdf.man1.pdf
tar chzf epstopdf.tar.gz $^
groff = groff
groff_opts = -man -t
pdfopts = $(groff_opts)
htmlopts = $(groff_opts) -Thtml
pspdf = ps2pdf -sPAPERSIZE=a4
epstopdf.man1.pdf: epstopdf.1
$(groff) $(pdfopts) $< | $(pspdf) - $@
epstopdf.html: epstopdf.1
$(groff) $(htmlopts) $< >$@
# upload .tar.gz to ctan.org/upload, move .html to ~www/epstopdf.
|