summaryrefslogtreecommitdiffstats
path: root/rules/cups-filters.in
blob: 7ac19cf940c43b59b788fdbf8718b30e8bd66266 (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
## SECTION=applications

menuconfig CUPS_FILTERS
	tristate
	prompt "cups-filters                  "

	select LIBC_DL
	select HOST_CUPS
	select HOST_GLIB
	select CUPS
	select GLIB
	select ZLIB
	select LCMS
	select FREETYPE
	select FONTCONFIG
	select QPDF

	select LIBJPEG			if CUPS_FILTERS_JPEG
	select LIBPNG			if CUPS_FILTERS_PNG

	help
	  cups-filters contains backends, filters, and other software that
	  was once part of the core CUPS distribution but is no longer
	  maintained by Apple Inc. In addition it contains additional filters
	  and software developed independently of Apple, especially filters for
	  the PDF-centric printing workflow introduced by OpenPrinting and a
	  daemon to browse Bonjour broadcasts of remote CUPS printers and makes
	  these printers available locally.

if CUPS_FILTERS

config CUPS_FILTERS_POPPLER
	depends on BROKEN
	bool "build with poppler support"
	help
	  Build with poppler support, needed for pdfto* filters and banners.

config CUPS_FILTERS_IMAGEFILTERS
	bool "build image filters"
	help
	  Build imagetopdf and imagetoraster filters

config CUPS_FILTERS_PCLM
	bool "with PCLm support"
	help
	  Enable PCLm support for printing on Wi-Fi Direct printers via
	  rastertopclm filter

config CUPS_FILTERS_JPEG
	bool "with JPEG support"
	depends on CUPS_FILTERS_IMAGEFILTERS
	default y
	help
	  Enable JPEG support in image filters

config CUPS_FILTERS_PNG
	bool "with PNG support"
	depends on CUPS_FILTERS_IMAGEFILTERS
	default y
	help
	  Enable PNG support in image filters

endif
# vim: ft=kconfig ts=8 noet tw=80