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

..03-May-2022-

box/H07-Sep-2013-38,26323,282

examples/H07-Sep-2013-1,8131,494

libltdl/H07-May-2022-48,62738,918

libs/H07-Sep-2013-22,49415,344

man/H07-Sep-2013-917754

tests/H07-Sep-2013-2,2231,759

AUTHORSH A D07-Dec-201267 52

COPYINGH A D07-Dec-201217.6 KiB341281

COPYING.LESSERH A D07-Dec-20127.5 KiB166128

ChangeLogH A D07-Sep-201315.4 KiB289257

INSTALLH A D02-Apr-201215.4 KiB371288

Makefile.amH A D07-Dec-20121.5 KiB242

Makefile.inH A D07-Sep-201325.2 KiB796685

READMEH A D07-Dec-20121.8 KiB5944

STYLEH A D07-Dec-20129.4 KiB249184

TODOH A D07-Dec-20126.5 KiB133120

aclocal.m4H A D07-Sep-2013370.7 KiB10,6369,555

config.h.inH A D07-Sep-20136.3 KiB245165

configureH A D07-Sep-2013478.5 KiB16,67714,061

configure.acH A D07-Sep-20134.5 KiB143114

README

1Installation
2------------
3To compile the sources and install on your machine you may proceed
4with the quite usual sequence:
5
6  ./configure --with-cairo
7  make
8  make install
9
10Detailed installation instructions are available inside the file INSTALL
11in this same directory. The '--with-cairo' flag enables detection and
12usage of the Cairo 2D graphic library. Be sure to have this library
13installed on your system: this is not mandatory, but will give you some
14more features (see later section).
15If you want a local installation, you may proceed as follows:
16
17  ./configure --prefix=/home/yourusername/local --with-cairo
18  make
19  make install
20
21Your system won't know where to find the Box executable.
22Therefore you may put a line such as
23
24  export PATH=$PATH:~/local/bin
25
26at the end of your bashrc file (which is a hidden file in your home
27directory: ~/.bashrc). This last modification is not needed. It just
28makes life easier.
29
30Test
31----
32After installation, you may run some tests to see if the compilation
33suceeded. Just type:
34
35  make check
36
37You should get a final message such as:
38
39  0 errors found.
40  All tests performed led to success.
41  ...
42
43Cairo library
44-------------
45You can now compile Box with support for the Cairo 2D graphic library.
46Cairo gives support for some more output terminals (PDF, SVG, PNG, PS)
47and is going to be well exploited in the next Box releases, giving it
48many cool features. Be sure to compile Box with the '--with-cairo' flag ;-)
49
50Documentation
51-------------
52You may find the documentation on the website http://boxc.sourceforge.net/
53The documentation is still incomplete. You may start to learn by looking
54at the examples on the examples directory.
55If you need help or found some bugs, just use the Sourceforge support request
56or send a mail to: fnch@users.sourceforge.net
57
58
59