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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
|
ifeq ($(SRCDIR)x,x)
SRCDIR = $(CURDIR)/../..
BUILDDIR = $(SRCDIR)
endif
SUBDIR = converter/other
VPATH=.:$(SRCDIR)/$(SUBDIR)
include $(BUILDDIR)/Makefile.config
ifeq ($(shell xml2-config --version),)
XML2_LIBS=NONE
XML2_CFLAGS=NONE
else
XML2_LIBS=$(shell xml2-config --libs)
XML2_CFLAGS=$(shell xml2-config --cflags)
endif
SUBDIRS = jbig pnmtopalm jpeg2000 cameratopam pamtosvg
ifneq ($(BUILD_FIASCO), N)
SUBDIRS += fiasco
endif
ifneq ($(TIFFLIB),NONE)
ifneq ($(TIFFHDR_DIR)x,x)
EXTERN_INCLUDES += -I$(TIFFHDR_DIR)
endif
endif
ifeq ($(shell libpng-config --version),)
ifneq ($(PNGLIB),NONE)
HAVE_PNGLIB = Y
ifneq ($(PNGHDR_DIR)x,x)
EXTERN_INCLUDES += -I$(PNGHDR_DIR)
endif
ifneq ($(ZHDR_DIR)x,x)
EXTERN_INCLUDES += -I$(ZHDR_DIR)
endif
endif
else
HAVE_PNGLIB = Y
EXTERN_INCLUDES += $(shell libpng-config --cflags)
endif
ifneq ($(JPEGLIB),NONE)
ifneq ($(JPEGHDR_DIR)x,x)
EXTERN_INCLUDES += -I$(JPEGHDR_DIR)
endif
endif
ifneq ($(URTLIB),NONE)
ifneq ($(URTHDR_DIR)x,x)
EXTERN_INCLUDES += -I$(URTHDR_DIR)
endif
endif
ifneq ($(XML2_LIBS),NONE)
ifneq ($(XML2_CFLAGS),NONE)
EXTERN_INCLUDES += $(XML2_CFLAGS)
endif
endif
ifeq ($(TIFFLIB),NONE)
TIFF_PREREQ_MISSING = Y
endif
TIFFLIB_EXTRALIBS =
ifeq ($(TIFFLIB_NEEDS_JPEG),Y)
ifeq ($(JPEGLIB),NONE)
TIFF_PREREQ_MISSING = Y
else
TIFFLIB_EXTRALIBS += $(JPEGLIB)
endif
endif
ifeq ($(TIFFLIB_NEEDS_Z),Y)
ifeq ($(ZLIB),NONE)
TIFF_PREREQ_MISSING = Y
else
TIFFLIB_EXTRALIBS += $(ZLIB)
endif
endif
PORTBINARIES = bmptopnm fitstopnm \
gemtopnm giftopnm hdifftopam infotopam \
pamtodjvurle pamtofits pamtogif \
pamtohdiff pamtohtmltbl pamtooctaveimg \
pamtopfm pamtopnm pamtouil \
pamtoxvmini \
pbmtopgm pfmtopam \
pgmtopbm pgmtoppm ppmtopgm pnmtoddif \
pnmtopclxl \
pnmtosgi pnmtosir pamtotga pnmtoxwd \
rlatopam sgitopnm sirtopnm xwdtopnm zeisstopnm
ifneq ($(DONT_HAVE_PROCESS_MGMT),Y)
PORTBINARIES += pstopnm
endif
BINARIES = $(PORTBINARIES) pnmtorast rasttopnm
ifeq ($(HAVE_PNGLIB),Y)
BINARIES += pnmtopng pngtopnm pamrgbatopng
endif
ifneq ($(JPEGLIB),NONE)
BINARIES += jpegtopnm pnmtojpeg
endif
ifneq ($(TIFF_PREREQ_MISSING),Y)
BINARIES += tifftopnm pamtotiff pnmtotiffcmyk
endif
ifneq ($(URTLIB),NONE)
BINARIES += rletopnm pnmtorle
endif
ifneq ($(ZLIB),NONE)
BINARIES += pnmtops
endif
ifneq ($(XML2_LIBS),NONE)
BINARIES += svgtopam
endif
MERGEBINARIES = $(BINARIES)
EXTRA_OBJECTS = exif.o rast.o pngtxt.o bmepsoe.o
ifneq ($(JPEGLIB),NONE)
EXTRA_OBJECTS += jpegdatasource.o
endif
ifneq (($TIFF_PREREQ_MISSING),Y)
EXTRA_OBJECTS += tiff.o
endif
OBJECTS = $(BINARIES:%=%.o) $(EXTRA_OBJECTS)
MERGE_OBJECTS = $(MERGEBINARIES:%=%.o2) $(EXTRA_OBJECTS)
SCRIPTS = anytopnm pnmtoplainpnm
.PHONY: all
all: $(BINARIES) $(SUBDIRS:%=%/all)
include $(SRCDIR)/Makefile.common
ifeq ($(NEED_RUNTIME_PATH),Y)
LIBOPTR = -runtime
else
LIBOPTR =
endif
LIBOPTS_TIFF = $(shell $(LIBOPT) $(NETPBMLIB) \
$(LIBOPTR) $(TIFFLIB) $(TIFFLIB_EXTRALIBS))
tifftopnm pamtotiff pnmtotiffcmyk: %: %.o tiff.o $(NETPBMLIB) $(LIBOPT)
$(LD) $(LDFLAGS) -o $@ $@.o tiff.o \
$(LIBOPTS_TIFF) $(MATHLIB) $(LDLIBS) $(RPATH) $(LADD)
ifeq ($(shell libpng-config --version),)
PNGLIB_LIBOPTS = $(shell $(LIBOPT) $(LIBOPTR) $(PNGLIB) $(ZLIB))
else
PNGLIB_LIBOPTS = $(shell libpng-config --ldflags)
endif
pngtopnm: %: %.o $(NETPBMLIB) $(LIBOPT)
$(LD) $(LDFLAGS) -o $@ $@.o \
$(shell $(LIBOPT) $(NETPBMLIB)) \
$(PNGLIB_LIBOPTS) $(MATHLIB) $(LDLIBS) $(RPATH) $(LADD)
pnmtopng: %: %.o pngtxt.o $(NETPBMLIB) $(LIBOPT)
$(LD) $(LDFLAGS) -o $@ $@.o pngtxt.o \
$(shell $(LIBOPT) $(NETPBMLIB)) \
$(PNGLIB_LIBOPTS) $(MATHLIB) $(LDLIBS) $(RPATH) $(LADD)
pamrgbatopng: %: %.o $(NETPBMLIB) $(LIBOPT)
$(LD) $(LDFLAGS) -o $@ $@.o \
$(shell $(LIBOPT) $(NETPBMLIB)) $(PNGLIB_LIBOPTS) \
$(MATHLIB) $(LDLIBS) $(RPATH) $(LADD)
jpegtopnm: %: %.o jpegdatasource.o exif.o $(NETPBMLIB) $(LIBOPT)
$(LD) $(LDFLAGS) -o $@ $< jpegdatasource.o exif.o \
$(shell $(LIBOPT) $(NETPBMLIB) $(LIBOPTR) $(JPEGLIB)) \
$(MATHLIB) $(LDLIBS) $(RPATH) $(LADD)
pnmtojpeg: %: %.o $(NETPBMLIB) $(LIBOPT)
$(LD) $(LDFLAGS) -o $@ $@.o \
$(shell $(LIBOPT) $(NETPBMLIB) $(LIBOPTR) $(JPEGLIB)) \
$(MATHLIB) $(LDLIBS) $(RPATH) $(LADD)
svgtopam: %: %.o $(NETPBMLIB) $(LIBOPT)
$(LD) $(LDFLAGS) -o $@ $@.o \
$(shell $(LIBOPT) $(NETPBMLIB) $(LIBOPTR)) \
$(XML2_LIBS) $(MATHLIB) $(LDLIBS) $(RPATH) $(LADD)
# If URTLIB is BUNDLED_URTLIB, then we're responsible for building it, which
# means it needs to be a dependency:
ifeq ($(URTLIB), $(BUNDLED_URTLIB))
URTLIBDEP = $(URTLIB)
endif
rletopnm pnmtorle: %: %.o $(NETPBMLIB) $(URTLIBDEP) $(LIBOPT)
$(LD) $(LDFLAGS) -o $@ $@.o \
$(shell $(LIBOPT) $(URTLIB) $(NETPBMLIB)) \
$(MATHLIB) $(LDLIBS) $(RPATH) $(LADD)
pnmtops: %: %.o bmepsoe.o $(NETPBMLIB) $(LIBOPT)
$(LD) $(LDFLAGS) -o $@ $@.o bmepsoe.o \
$(shell $(LIBOPT) $(NETPBMLIB) $(ZLIB)) \
$(MATHLIB) $(LDLIBS) $(RPATH) $(LADD)
pnmtorast rasttopnm: %: %.o rast.o $(NETPBMLIB) $(LIBOPT)
$(LD) $(LDFLAGS) -o $@ $@.o rast.o \
$(shell $(LIBOPT) $(NETPBMLIB)) \
$(MATHLIB) $(LDLIBS) $(RPATH) $(LADD)
bmptopnm.o bmptopnm.o2: bmp.h
pamtotga.o pamtotga.o2: tga.h
install.bin: install.bin.local
.PHONY: install.bin.local
install.bin.local: $(PKGDIR)/bin
# Remember that $(SYMLINK) might just be a copy command.
# backward compatibility: program used to be named pnmnoraw
cd $(PKGDIR)/bin ; \
$(SYMLINK) pnmtoplainpnm$(EXE) pnmnoraw
# backward compatibility: program used to be gemtopbm
cd $(PKGDIR)/bin ; \
$(SYMLINK) gemtopnm$(EXE) gemtopbm
# In October 2001, pnmtojpeg replaced ppmtojpeg
ifneq ($(JPEGLIB),NONE)
cd $(PKGDIR)/bin ; \
$(SYMLINK) pnmtojpeg$(EXE) ppmtojpeg
endif
# In March 2002, bmptopnm replaced bmptoppm
cd $(PKGDIR)/bin ; \
$(SYMLINK) bmptopnm$(EXE) bmptoppm
# In May 2002, pamtouil replaced ppmtouil
cd $(PKGDIR)/bin ; \
$(SYMLINK) pamtouil$(EXE) ppmtouil
# In March 2005, we realized that pamtopnm obviates pnmtopnm
cd $(PKGDIR)/bin ; \
$(SYMLINK) pamtopnm$(EXE) pnmtopnm
# In October 2005, pamtofits replaced pnmtofits
cd $(PKGDIR)/bin ; \
$(SYMLINK) pamtofits$(EXE) pnmtofits
ifneq ($(TIFF_PREREQ_MISSING),Y)
# In October 2005, pamtotiff replaced pnmtotiff
cd $(PKGDIR)/bin ; \
$(SYMLINK) pamtotiff$(EXE) pnmtotiff
endif
|