EDE code
Go to file
Sanel Z 9804f0e93a
Merge pull request #1 from kraileth/readme-improvement
Improve readme
2018-05-22 14:22:14 +02:00
build Use rsvg-convert as svg convertor. 2016-06-29 13:27:02 +02:00
data Applying patches from Michael to fix openbsd buils. Fixing notification daemon to properly read 'replaces' property. 2015-12-16 17:05:02 +00:00
doc Removing emountd; this code isn't used much as HAL is deprecated long time ago. Obviously, mounting notifications will be redone in future. 2013-10-02 01:35:18 +00:00
ede-about Applying patches from Michael to fix openbsd buils. Fixing notification daemon to properly read 'replaces' property. 2015-12-16 17:05:02 +00:00
ede-autostart Do not run .desktop files which has OnlyShowIn/NotShowIn without 'EDE' as key. 2013-02-04 00:02:28 +00:00
ede-bell-conf Make dialog-like windows centered. Work on implementing missing ede-desktop functions 2012-05-07 08:53:13 +00:00
ede-bug-tools Make sure 'lib' folders are created first. 2016-07-13 12:52:36 +02:00
ede-calc Squeezed some warnings. 2009-11-23 15:09:06 +00:00
ede-conf Added entry for ede-preferred-applications 2011-10-20 15:18:33 +00:00
ede-desktop Applying patches from Michael to fix openbsd buils. Fixing notification daemon to properly read 'replaces' property. 2015-12-16 17:05:02 +00:00
ede-desktop-conf Small code cleanup. Use the same code for tiling as ede-desktop is using it; this will make tile preview to look the same as will be on desktop background. 2014-11-28 17:45:41 +00:00
ede-dialog Use EDE_APPLICATION to init localization code and set default (and much saner) font size. 2010-03-28 12:54:45 +00:00
ede-help Importing new ede-screen-lock tool, a wrapper around various locking engines. Also modified ede-help to 2012-04-02 18:59:07 +00:00
ede-image-view Better zooming, small fixes 2012-04-25 09:45:52 +00:00
ede-keyboard-conf Sort layout descriptions. 2014-12-03 20:48:44 +00:00
ede-launch Fixing report string. 2014-06-20 09:27:40 +00:00
ede-notify-daemon Applying patches from Michael to fix openbsd buils. Fixing notification daemon to properly read 'replaces' property. 2015-12-16 17:05:02 +00:00
ede-panel Show status when battery query fails. 2016-07-13 16:07:02 +02:00
ede-preferred-applications Added a few terms more. 2013-01-07 15:09:40 +00:00
ede-screen-lock Importing new ede-screen-lock tool, a wrapper around various locking engines. Also modified ede-help to 2012-04-02 18:59:07 +00:00
ede-screensaver-conf Sort entries before they are added to the menu list. 2014-12-04 17:08:01 +00:00
ede-timedate Removing obsolete locale dir. Added checks for curl/types.h 2012-05-16 08:15:49 +00:00
ede-tip Prevent crash when focusing button. 2018-05-04 00:52:05 +02:00
evoke Changed default gtk+ theme. 2016-07-13 12:53:12 +02:00
m4 Removing efltk checks. Small fix inside pekwm.m4 2011-11-14 08:54:06 +00:00
pekwm Cleaning some compiler warnings. 2014-03-02 11:12:17 +00:00
services Removing unused service 2011-11-09 16:30:12 +00:00
tools Updating (c) year in about dialog. 2014-06-21 20:55:47 +00:00
AUTHORS Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
AUTHORS.pekwm Importing pekwm as alternative wm. Adopting it to ede build system including autoconf checks. 2011-10-23 00:10:40 +00:00
COPYING Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
Jamconfig.in These days linking with XShape extension must be done explicitly. 2013-05-30 12:31:25 +00:00
Jamfile Do not handle manual for now. 2018-05-22 14:01:57 +02:00
Jamrules Let sun compiler does not get gcc specific flags that will break the build 2009-04-16 16:56:14 +00:00
Makefile Removed obsolete makefiles. 2007-09-27 13:58:59 +00:00
README.md Improve readme 2018-05-04 20:28:07 +02:00
autogen.sh Synced with autogen.sh from edelib. 2009-11-20 15:29:47 +00:00
configure.in Increasing version number. 2014-06-23 21:11:41 +00:00

README.md

EDE

EDE, the Equinox Desktop Environment, is a small and fast desktop environment that uses the FLTK toolkit. For more details and the philosophy behind it, see about EDE on our wiki.

Build requirements

EDE requires FLTK; at the time of this writing, the latest stable branch is 1.3.x.

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 needed both for building and running the desktop. Edelib is developed and released together with EDE.

It is strongly recommended to use matching versions of EDE and edelib (i.e. versions released at the same time) or to checkout both from the repository at the same time to make sure they work together well.

Also you will need the jam tool. Jam is a make replacement and you can find it on our repository.

Downloading the code

The best way to get the latest code is checking it out from our repository. These are the modules you should checkout (with their paths):

  • jam - git clone https://github.com/edeproject/jam.git
  • edelib - git clone https://github.com/edeproject/edelib.git
  • ede - git clone https://github.com/edeproject/ede.git

If you already have Jam installed, there is of course no need to download it again. Either vanilla Jam or FTJam can be used to build EDE. Boost Jam is known to not work.

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 (e.g. 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. change into the ede directory and run ./autogen.sh

  4. after that, do ./configure --enable-debug

  5. jam

  6. jam install

Please note that this document is only a quick and short tutorial on installing EDE. For more details please see Installation Howto on our wiki.