![]() |
|
how to install enlightenment d17 - Printable Version +- Linux-Noob Forums (https://www.linux-noob.com/forums) +-- Forum: Linux Noob (https://www.linux-noob.com/forums/forum-3.html) +--- Forum: Tips and Tricks (https://www.linux-noob.com/forums/forum-59.html) +--- Thread: how to install enlightenment d17 (/thread-2381.html) |
how to install enlightenment d17 - hijinks - 2005-10-13 first its only out for cvs.. make sure you have the following libraries installed [/url][url=http://enlightenment.org/Enlightenment/Get...ment/index.html]http://enlightenment.org/Enlightenment/Get...ment/index.html that explains what you need installed.. any new distro with the basics installed should be fine so lets grab it from cvs Code: cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/enlightenment login
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/enlightenment co e17when it prompts you for a password just hit enter.. sometimes sourceforge is very slow on the cvs server.. so just give it a few minutes now that you have it all downloaded.. lets compile it.. this is long.. but fun :) Code: cd e17/libs/imlib2
./autogen.sh
./configure --prefix=/usr
make
make install
cd ../edb/
./autogen.sh
make
make install
cd ../eet/
./autogen.sh
make
make install
cd ../evas/
./autogen.sh
make
make install
cd ../ecore/
./autogen.sh
make
make install
cd ../epeg/
./autogen.sh
make
make install
cd ../embryo/
./autogen.sh
make
make install
cd ../edje/
./autogen.sh
make
make install
cd ../epsilon/
./autogen.sh
make
make install
cd ../esmart/
./autogen.sh
make
make install
cd ../emotion/
./autogen.sh
ldconfig -v
make
make install
cd ../etox/
./autogen.sh
make
make install
cd ../ewl/
./autogen.sh
make
make install
cd ../../apps/iconbar
./autogen.sh
make
make install
cd ../entice/
./autogen.sh
make
make install
cd ../entrance/
./autogen.sh
make
make install
cd ../elicit/
./autogen.sh
make
make install
cd ../e/
./autogen.sh
make
make installfinally compiled and install... YAYAYA now for me i don't use like gdm.. i just type startx and boot right into X so for me to run E i just do this Code: echo enlightenment > ~/.xinitrcthen when you exit out of X and run startx it should load E.. this was tested on slackware 10.2 how to install enlightenment d17 - hijinks - 2005-10-13 to config the menu bar and such do this Code: cd e17/libs/engrave
./autogen.sh
make
make install
cd ../../apps/e_utils
./autogen.sh
make
make installthen you should be able to run entangle i think thats how toy edit in e17 :) |