summaryrefslogtreecommitdiffstats
path: root/rules/pslib.in
blob: 2445564ef897565eb6372bbc090143aa43c2bc53 (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
## SECTION=system_libraries

menuconfig PSLIB
	tristate
	select HOST_GETTEXT
	select LIBPNG	if PSLIB_LIBPNG
	select LIBJPEG	if PSLIB_LIBJPEG
	prompt "pslib                         "
	help
	  pslib is a C-library to create PostScript files on the fly. It
	  offers many drawing primitives, inclusion of png and eps images
	  and a very sophisticated text rendering including hyphenation,
	  kerning and ligatures. It can read external Type1 fonts and embed
	  them into the output file. It supports pdfmarks which makes it in
	  combination with ghostscript`s pdfwriter an alternative for
	  libraries creating PDF.

if PSLIB

config PSLIB_LIBPNG
	bool
	prompt "PNG support"

config PSLIB_LIBJPEG
	bool
	prompt "JPEG support"

endif