summaryrefslogtreecommitdiffstats
path: root/rules/libnetpbm.in
blob: 7796988cbc8f334b05a913624c95e13dfb6dad10 (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
## SECTION=system_libraries
# netpbm configuration

menuconfig LIBNETPBM
	tristate
	select LIBC_M
	select LIBPNG if LIBNETPBM_PNG2PNM
	prompt "libnetpbm                     "
	help
	  libnetpbm is a C programming library for reading,
	  writing, and manipulating Netpbm images. It also
	  contains a few general graphics manipulation tools,
	  but it is not intended to be a graphics tools library.

if LIBNETPBM

config LIBNETPBM_BUILD_FIASCO
	bool
	prompt "build fiasco"
	help
	  FIASCO stands for Fractal Image and Sequence Codec.

config LIBNETPBM_PBM2LJ
	bool
	prompt "pbmtolj"
	help
	  Convert color pbm bitmaps to HP-PCL5

config LIBNETPBM_PPM2LJ
	bool
	prompt "ppmtolj"
	help
	  Convert monochrome ppm bitmaps to HP-PCL5

config LIBNETPBM_PNG2PNM
	bool
	# broken with current libpng
	depends on BROKEN
	prompt "pngtopnm"
	help
	  Convert png images to portable anymap.

config LIBNETPBM_PNM2XWD
	bool
	prompt "pnmtoxwd"
	help
	  Convert portable anymap to x window dump image

config LIBNETPBM_XWD2PNM
	bool
	prompt "xwdtopnm"
	help
	  Convert x window dump image to portable anymap

# FIXME: add library support (TIFF, JPEG, ...)


endif