summaryrefslogtreecommitdiffstats
path: root/rules/poppler.in
blob: 0fe816669b05dd12187bf4ccaa209035114b4511 (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=multimedia_gtk

menuconfig POPPLER
	tristate
	prompt "poppler                       "
	select FONTCONFIG
	select GLIB	if POPPLER_GLIB
	select LIBJPEG	if POPPLER_JPEG
	select CAIRO	if POPPLER_CAIRO
	select GTK	if POPPLER_SPLASH && POPPLER_GLIB
	select ZLIB	if POPPLER_ZLIB
	help
	  Poppler is a PDF rendering library based on the xpdf-3.0 code base.

if POPPLER

config POPPLER_BIN
	bool
	prompt "install poppler utilities"
	help
	  installs command line utilies comming with poppler package, contains
	  pdffonts, pdfimages, pdfinfo, pdftoabw, pdftohtml, pdftoppm, pdftops,
	  pdftotext.

config POPPLER_GLIB
	bool
	prompt "enable poppler glib wrapper"
	help
	  build poppler glib wrapper.

comment "glibc wrapper needs at least one graphics backend"
	depends on POPPLER_GLIB && !(POPPLER_CAIRO || POPPLER_SPLASH)

config POPPLER_CAIRO
	bool
	prompt "enable poppler cairo graphics backend"
	help
	  built cairo graphics backend

config POPPLER_SPLASH
	bool
	prompt "enable poppler Splash graphics backend"
	help
	  build splash graphics backend

config POPPLER_JPEG
	bool
	prompt "enable poppler jpeg support"
	help
	  compiles poppler glib wrapper.

config POPPLER_ZLIB
	bool
	prompt "enable poppler zlib support"
	help
	  compiles poppler with zlib support.

endif