@@ -5,41 +5,52 @@ About Panel
5
5
-----------
6
6
7
7
This program is meant to display an arbitrary number of desktop panels, with
8
- support for one per edge of the screen at the moment. Each panel can then host a
9
- number of applets, implemented as plug-ins to the main program.
8
+ support for up to one per edge of the screen at the moment. Each panel can then
9
+ host a number of applets, implemented as plug-ins to the main program.
10
10
11
11
A number of additional utilities is also available, allowing tighter integration
12
12
of external applications, as well as when responding to system events
13
13
(notifications...).
14
14
15
- Documentation
16
- -------------
17
-
18
- Each of these tools, as well as Panel itself, are documented in a series of
19
- manual pages. They are also available in the HTML format.
20
-
21
15
Compiling Panel
22
16
---------------
23
17
24
- The current requirements for compiling Panel are as follows:
25
- * Gtk+ 2.4 or later, or Gtk+ 3.0 or later
18
+ Panel depends on the following components:
19
+
20
+ * Gtk+ 2.4 or newer, or Gtk+ 3.0 or newer
26
21
* DeforaOS libDesktop
27
22
* DeforaOS Browser
28
23
* an implementation of ` make `
29
24
* gettext (libintl) for translations
30
25
* docbook-xsl for the documentation (optional)
31
26
32
- With these installed, the following command should be enough to compile Panel on
33
- most systems:
27
+ With these installed, the following command should be enough to compile and
28
+ install Panel on most systems:
29
+
30
+ $ make install
31
+
32
+ To install (or package) Panel in a different location, use the ` PREFIX ` option
33
+ as follows:
34
34
35
- $ make
35
+ $ make PREFIX="/another/prefix" install
36
36
37
- On some systems, the Makefiles shipped can be re-generated accordingly thanks to
38
- the DeforaOS configure tool.
37
+ Panel also supports ` DESTDIR ` , to be installed in a staging directory; for
38
+ instance:
39
+
40
+ $ make DESTDIR="/staging/directory" PREFIX="/another/prefix" install
41
+
42
+ The compilation process supports a number of other options, such as OBJDIR for
43
+ compilation outside of the source tree for instance.
44
+
45
+ On some systems, the Makefiles shipped may have to be re-generated accordingly.
46
+ This can be performed with the DeforaOS configure tool.
47
+
48
+ Documentation
49
+ -------------
39
50
40
- The compilation process supports a number of options, such as PREFIX and DESTDIR
41
- for packaging and portability, or OBJDIR for compilation outside of the source
42
- tree .
51
+ Manual pages for each of the executables installed are available in the ` doc `
52
+ folder. They are written in the DocBook-XML format, and need libxslt and
53
+ DocBook-XSL to be installed for conversion to the HTML or man file format .
43
54
44
55
Extending Panel
45
56
---------------
0 commit comments