forked from hesa/gnu-xnee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
76 lines (48 loc) · 1.47 KB
/
README
File metadata and controls
76 lines (48 loc) · 1.47 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Xnee / README
==============================================
GNU Xnee is a GNU package.
For more information about GNU Xnee, please visit:
http://www.sandklef.com/xnee/
For more information about GNU, please visit
http://www.gnu.org
Xnee consists of three parts:
==============================================
1) libxnee (libxnee is basically xnee)
A library containing most of the functionality.
2) xnee (xnee's not an event emulator)
A command line program using libxnee
3) gnee (gnee's not an emulator either)
A GUI program using libxnee
4) pnee
A Gnome Panel Applet
To build these three programs do the following:
==============================================
Building from dist file (e.g xnee-4.0.tar.gz):
-----------------------------------------------
#Unzip the source file
gunzip xnee-4.0.tar.gz
#Untar the source file
tar xvf xnee-4.0.tar
#Enter the Xnee directory
cd xnee-4.0
#Generate the makefiles and build
./configure
make
make install
if you need help on the configure options, do
./configure --help
Typically you can:
* disable building gnee (--disable-gui)
* disable building documentation (--disable-doc)
* enable building of pnee (--enable-gnome-applet)
Building from CVS:
-----------------------------------------------
#Check out xnee
cvs -z3 -d:pserver:anonymous@cvs.savannah.gnu.org:/sources/xnee co xnee
#Enter the Xnee directory
cd xnee
#Generate the makefiles and build
make -f Makefile.cvs
./configure
make
make install