mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
72 lines
2.4 KiB
Plaintext
72 lines
2.4 KiB
Plaintext
Readme for EDE 2.0
|
|
==================
|
|
|
|
Please read this document before using or contributing to EDE 2.0 source code.
|
|
|
|
[NOTE]
|
|
.This is beta product
|
|
===================================
|
|
EDE 2.0 is not finished yet and many components are not completed,
|
|
can crash or misbehave
|
|
===================================
|
|
|
|
Build requirements
|
|
------------------
|
|
|
|
EDE 2.0 is using FLTK toolkit from http://www.fltk.org[www.fltk.org]. At the time
|
|
of this writing, latest stable version is 1.1.9.
|
|
|
|
Since FLTK lacks many things needed for developing a full *nix desktop
|
|
environment, we have developed a small add-on library called 'edelib'. This
|
|
library is also required for compiling EDE 2.0 and should be released together with EDE.
|
|
|
|
We *strongly* recommend that you use matching versions of ede and
|
|
edelib (e.g. released at the same time) or that you do SVN checkout at the same time due
|
|
their frequent changes.
|
|
|
|
Make sure you have eFLTK installed too, because some packages still requires it.
|
|
|
|
Also you will need a Jam tool. Jam is a make replacement and you can find it on our repository.
|
|
|
|
Downloading the code
|
|
--------------------
|
|
|
|
The best way to download latest code is checking it out from our repository. These modules
|
|
you should checkout (with their paths):
|
|
|
|
- jam : 'svn co https://ede.svn.sourceforge.net/svnroot/ede/trunk/jam'
|
|
- edelib : 'svn co https://ede.svn.sourceforge.net/svnroot/ede/trunk/edelib'
|
|
- ede : 'svn co https://ede.svn.sourceforge.net/svnroot/ede/trunk/ede2'
|
|
- efltk : 'svn co https://ede.svn.sourceforge.net/svnroot/ede/trunk/efltk'
|
|
|
|
If you already have Jam installed, there is no need to download it.
|
|
|
|
Compiling and installing
|
|
------------------------
|
|
|
|
In order to build and install EDE do the following steps:
|
|
|
|
1. compile and install jam first; going to jam source directory and running 'make' will do
|
|
the job; after that you should get 'bin.YOUR_PLATFORM' directory (on Linux it will be
|
|
bin.linux) and copy 'jam' executable in your $PATH, e.g. /usr/local/bin
|
|
|
|
2. compile and install edelib; please read README file in edelib directory
|
|
|
|
3. compile and install efltk; './configure --disable-mysql --disable-unixODBC && make && make install'
|
|
will do the job
|
|
|
|
4. go in ede2 directory and run './autogen.sh'
|
|
|
|
5. after that, goes './configure --enable-debug'
|
|
|
|
6. jam
|
|
|
|
7. jam install
|
|
|
|
Used programs that requires eFLTK
|
|
---------------------------------
|
|
|
|
- edewm
|
|
|
|
These programs are planned to be replaced with the new ones.
|