• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

cmake/modules/H01-Nov-2019-245202

data/H03-May-2022-568493

doc/H03-May-2022-13,34511,172

include/H03-May-2022-1,131883

po/H02-Nov-2019-1,5711,269

src/H03-May-2022-14,81110,639

AUTHORSH A D01-Nov-2019373 1713

COPYINGH A D01-Nov-201917.6 KiB341281

ChangeLogH A D01-Nov-201914 KiB347306

INSTALLH A D01-Nov-201915.4 KiB369287

Makefile.amH A D01-Nov-2019471 199

Makefile.inH A D03-May-202229.5 KiB943840

NEWSH A D01-Nov-20190

READMEH A D01-Nov-20191.4 KiB5739

README.WIN32H A D01-Nov-2019822 2920

aclocal.m4H A D01-Nov-2019393.6 KiB10,9659,918

autogen.shH A D01-Nov-20191.1 KiB4722

cmakeconfig.h.inH A D01-Nov-20192.3 KiB8456

compileH A D01-Nov-20197.2 KiB349259

config.guessH A D01-Nov-201943.2 KiB1,4811,288

config.h.inH A D01-Nov-20195.8 KiB228156

config.subH A D01-Nov-201935.3 KiB1,8021,661

configureH A D03-May-2022496.4 KiB17,23414,352

configure.inH A D01-Nov-20196.6 KiB279235

depcompH A D01-Nov-201923 KiB792502

install-shH A D01-Nov-201915 KiB519337

intltool-extract.inH A D01-Nov-20190

intltool-merge.inH A D03-May-20220

intltool-update.inH A D01-Nov-20190

libps.pc.inH A D01-Nov-2019225 1310

ltmain.shH A D01-Nov-2019319.4 KiB11,2508,044

missingH A D01-Nov-20196.7 KiB216143

pslib.specH A D01-Nov-20191.5 KiB7756

pslib.spec.inH A D01-Nov-20191.5 KiB7758

README

1pslib
2=====
3C-libaray for generating PostScript files.
4
5Copyright (c) 2001-2004 Uwe Steinmann <steinm@debian.org>
6
7The pslib distribution is available from:
8http://pslib.sourceforge.net
9
10THIS IS PUBLIC SOFTWARE RELEASED UNDER THE GPL
11see http://www.gnu.org for details on this license.
12
13
14Overview
15========
16pslib is a C-library for generating PostScript files with little
17effort. It offers an easy way of generating PostScript text
18and graphics. Its text function are very sophisticated and support
19kerning, ligatures and some basic formatting. Hypertext functions
20are supported through pdfmarks which makes pslib in combination
21with ghostscript a viable alternative for libraries creating
22PDF.
23
24
25Supported Programming Environments
26==================================
27There is already a PHP extension for pslib in pecl. Perl support
28is in its early stage and is currently only available in the CVS.
29Python and Tcl bindings are also available.
30
31Mailing-List
32============
33pslib is a work in progress. You can ask questions or contribute through
34pslib-list@lists.sourceforge.net
35
36
37External libraries used in pslib
38=================================
39pslib needs libpng for reading PNG images.
40
41Submitting Bug Reports
42======================
43Report bugs you have found at http://sourceforge.net/projects/pslib
44
45
46TODO
47====
48Quite a lot but pslib is already very useable.
49
50Licensing and Copyleft
51======================
52THIS IS GPL/LGPL SOFTWARE!
53
54Read the GPL license at http://www.fsf.org
55
56
57

README.WIN32

1Installation of pslib on win32 systems.
2---------------------------------------
3
4Since version 0.4.0 of pslib it can be quite easily compiled for
5win32 systems in a mingw environment.
6
7Requirements
8------------
9You will need a recent version of MinGW, msys, and ActivePerl.
10You also need libpng, libzip, libungif, libtiff and libjpeg compiled
11for wind32, which are provided by the sourceforge project GnuWin32.
12
13Installation
14------------
151. Install MinGW and msys
162. Install ActivePerl
173. Grab the most recent source tar archive of pslib and untar it
184. Change into the untared directory and invoke
19
20   export INTLTOOL_PERL=<path to perl>
21   ./configure
22
23   if configure doesn't detect the graphics libraries then specify
24	 their location with --with-png, -with-gif, --with-jpeg, --with-tiff.
25
265. Run make; make install
27
28
29