summaryrefslogtreecommitdiffstats
path: root/rules/libnetpbm.in
diff options
context:
space:
mode:
authorHenning Steffen <h.steffen@pengutronix.de>2008-06-04 13:05:24 +0000
committerHenning Steffen <h.steffen@pengutronix.de>2008-06-04 13:05:24 +0000
commit17df9f2c792259af0074adf384745903c2b972a4 (patch)
tree9b233de816eef1a7b52ba2735962f7b559d66406 /rules/libnetpbm.in
parente77d46edfa498ea6b9e482eed2f9a4783fb8d66d (diff)
downloadptxdist-17df9f2c792259af0074adf384745903c2b972a4.tar.gz
ptxdist-17df9f2c792259af0074adf384745903c2b972a4.tar.xz
* change bool to tristate .in Files from H to M
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8312 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/libnetpbm.in')
-rw-r--r--rules/libnetpbm.in14
1 files changed, 6 insertions, 8 deletions
diff --git a/rules/libnetpbm.in b/rules/libnetpbm.in
index 6a610aa43..b61a8f8d0 100644
--- a/rules/libnetpbm.in
+++ b/rules/libnetpbm.in
@@ -1,56 +1,54 @@
# netpbm configuration
menuconfig LIBNETPBM
- bool
+ tristate
select LIBPNG if LIBNETPBM_PNG2PNM
- prompt "libnetpbm "
+ 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
- depends on LIBNETPBM
prompt "build fiasco"
help
FIASCO stands for Fractal Image and Sequence Codec.
config LIBNETPBM_PBM2LJ
bool
- depends on LIBNETPBM
prompt "pbmtolj"
help
Convert color pbm bitmaps to HP-PCL5
config LIBNETPBM_PPM2LJ
bool
- depends on LIBNETPBM
prompt "ppmtolj"
help
Convert monochrome ppm bitmaps to HP-PCL5
config LIBNETPBM_PNG2PNM
bool
- depends on LIBNETPBM
prompt "pngtopnm"
help
Convert png images to portable anymap.
config LIBNETPBM_PNM2XWD
bool
- depends on LIBNETPBM
prompt "pnmtoxwd"
help
Convert portable anymap to x window dump image
config LIBNETPBM_XWD2PNM
bool
- depends on LIBNETPBM
prompt "xwdtopnm"
help
Convert x window dump image to portable anymap
# FIXME: add library support (TIFF, JPEG, ...)
+
+endif