Page 1 of 98 1231151 ... LastLast
Results 1 to 10 of 975

Thread: HOWTO: installation of E17 from CVS (UPDATED)

  1. #1
    Join Date
    Oct 2004
    Beans
    2,324

    HOWTO: installation of E17 from CVS (UPDATED)

    Due to the change of CVS repo to a SVN repo by Enlightenment devs this thread it's no longer advised and will soon became very outpdated!
    Please see new thread here:

    HOWTO: installation of e17 from SVN code

    Thanks!


    OUTDATED:
    Hi all.
    This How-To explains how to install a fresh and stable e17, compiled from CVS sources, on Ubuntu or any Debian based distro.

    This Howto it's also in CafeLinux Forum (click here).

    This Howto it's also in Portuguese Techzone Forum (em PT, Obrigado neonl)

    WARNING:
    This method it's not compatible with OpenGEU/Geubuntu, Maryan linux, elive, old gOS
    or others distros with an already implemented e17.
    Please do not try it with those distros.

    NOTE: With new gOS Space should be work fine.

    So, what's the advantage of compile from cvs source? well,
    • you can be as updated as you wish,
    • you can be as outdated as you wish (using the date option of cvs you can go back to any specific date you want... search for specific features or avoid a broken version)
    • you will have everything installed on /opt/ directory. That's the correct location for testing/beta software. It will not mix libs and apps from enlightenment with your system. It's easier to clean and make backups or even run different versions side by side.
    • you can make your own Ubuntu flavor, by installing a minimal base system (like MinimalCD or ubuntulite) and e17 over it.
    • you can set your own compile options.

    This method use a famous script, easy_e17.sh from morlenxus, one of the e17 developers.

    Essentially, what i propose is, reduce the number of available e apps to a minimum stable core, that gives the environment,
    and use apps more stable to the common tasks like file-manager, terminal, etc., available at repos.

    I'm very pleased to announce that we have repos available to automatically implement this method!
    So i changed the procedure to reflect the new method using our OzOS repos (thanks to CafeLinux.org).
    I hope you all like it

    If someone wants to see what it's done under the table or do it by hand (the old way) please check the pdf at the end of this post.

    This package should work with (X/K/E/G)Ubuntu from Edgy to Hardy (Dapper has dependency issues with some old libs and should be avoid) as with Debian and any recent Debian derivative.



    INSTALLATION
    Add the following repos to your /etc/apt/sources.list:
    To do it automatically, copy+past the above to a command line:
    Code:
     sudo sh -c "echo 'deb http://cafelinux.org/Downloads/oz-os tinwoodman main' >> /etc/apt/sources.list"
    and add the authenticated key with:
    Code:
    wget -q http://cafelinux.org/Downloads/oz-os/key.asc -O- | sudo apt-key add -
    Please if you have any link to this method, please update it as soon as possible. Many Thanks.

    Install it with:
    Code:
    sudo apt-get update && sudo apt-get install e17-cvs
    And thats all.



    To start enlightenment logout from your current Desktop Environment, and at Login Manger window
    choose: Options/Session > choose: Enlightenment.



    UPDATE [e17-cvs: 0.6.0] (2008-Jul-22)
    Default path for downloaded CVS code has changed to /var/cache/e17_cvs.
    Although it will work with the old path (~/.e17_cvs) the new one it's more generic (either for sudo as non-sudo use).
    Users that have already installed may go for the new path by doing:
    Code:
    sudo mv ~/.e17_cvs /var/cache/e17_cvs
    before update e17-cvs. (New users don't need to do anything extra, of course)




    AN ALTERNATIVE METHOD (more control):

    If wanted compilation can be done after the installation of e17-cvs. Just do before install:
    Code:
    touch $HOME/_skip_easy_e17_install
    and then:
    Code:
    sudo apt-get update && sudo apt-get install e17-cvs
    sudo easy_e17.sh -i
    rm $HOME/_skip_easy_e17_install
    Hope you enjoy it.

    __________________________________________

    If you want to try my themes you can also install:
    Code:
    sudo apt-get install e17-themes

    UPDATES
    After installed updates are handle with:
    Code:
    sudo easy_e17.sh -u
    NOTE:
    If you had already installed with the old manual method or using Morlenxus script directly, no problem, it is fully compatible...
    My only suggestion, perfectly optional, if you use the old default path it's:
    Code:
    sudo mv ~/e17_cvs /var/cache/e17_cvs
    and then do the step INSTALL above. It will not repeat all from the beginning just will do an update.

    The deb will use a local cvs tree if you already have one, will make all configs if none exists.
    No need of manual creation of files or file editing.
    If an already installations is found, the deb will only proceed with an update.


    If you later want to try other enlightenment apps not installed by this package, please check pdf of manual method for tips and extra dependencies.


    REMOVE
    If you decided that e17 it's not for you you can remove it:
    Code:
    sudo apt-get remove e17-cvs
    or
    Code:
    sudo apt-get remove --purge e17-cvs
    to delete all compiled/installed e17 files.

    _____________________________________________

    Don't forget to check the below section TIPS AND NOTES for any references on CVS breakage or specific issues of the moment
    (i will try to keep it updated)

    _____________________________________________



    STARTUP AND CONFIGURATION LOOK
    Something very basic but not immediate is how to run an application automatically at start up.
    Old versions required manual editing of .order files under ~/.e/e/applications/startup/.order but now we can just run from Main menu:
    Configuration -> Configuration Panel -> Applications -> Startup Applications and choose what we want.

    If the desired app don't exist on the list you need to create a .desktop launcher for it first.
    At Enlightenment Configuration window, under Applications, there are an entry called 'New Application' to do exactly that
    It's plain simple, so just 2 comments. New launchers will be create under ~/.local/share/applications/ and will have an unfriendly name like _new_app-1.desktop... A persistent bug stills avoid change that name, so after create the file i change the name manually (from command line or a file manager). This is just for us to find it more easily, since internally this launchers are listed by the name we set under the Entry Editor, info that it's saved as text file.
    Take care filling the field Categories with something meaningful. That's how e17 lists the available apps, and since there are dozens it's easy we lost them when we don't set no special category.

    One nice trick to control start up apps is to make a script, make it executable and then create a .desktop for it like described above. That way you just run one startup "app" that can launch what ever you want and how you want and editable with any text editor. Here an example (start oofice quick launcher and numlockX):
    Code:
    #!/bin/sh
    # <- this symbol makes the line just a comment, remove it to launch the app:
            gnome-settings-daemon &
            # numlockx on &
            # gnome-volume-manager &
            # ooffice -quickstart -nologo -nodefault &
    Controlling the look of Applications is another aspect that it's not obvious.
    E17 Apps use controls/widgets from etk, but gtk apps don't know nothing about it. That means they will have the look (kind of ugly) of default gnome.
    There are 2 ways of tweak this.
    1st way, if you have gnome or xfce installed, is simply run the daemons of those environment, gnome-settings-daemon or xfce-mcs-manager respectively, on startup (like described above). That will set the theme we choose for gnome/xfce for all gtk apps, runs some basic services and start a few things like screensaver and numlockX. Appearance can then be tuned by running gnome-control-center or xfce-setting-show, according the daemon used.
    The 2nd way is lighter (not that much, note). Simply create a file named: .gtkrc-2.0 on your home folder, that would control gtk look.
    As an example of a possible .gtkrc-2.0 file:
    Code:
     gtk-theme-name = "Human"
     gtk-icon-theme-name = "Tango"
     gtk-font-name = "Bitstream Vera Sans 11"
    You can tune the icon theme used for menu and desktop icons on:
    Configuration > Configuration Panel > Appearance > Icon theme (that won't change icon theme used by gtk apps, see tip above)

    hope that helps make your e17 even more beautiful


    -------------------


    TIPS AND NOTES:

    - On clean installs (no other DE) you will find that you have no Application menus.
    On that case check my suggestions on this post here.

    - If, for any reason, you need a previous version of e17, check here to get an idea on how to get it:
    http://ubuntuforums.org/showpost.php...&postcount=461
    (I will elaborate on this tip, if cvs tree get broken one of this days and that became more useful than right now, that luckily is very stable )

    - You can install original skipped packages, by editing /etc/.easy_e17.conf file, remove them from --skip list and do:
    sudo easy_e17.sh --only=<skipped_package_name>

    - A situation that sometimes arise is that we want an application not listed on script.
    What i do is simply add manually the app to the correct entry list on script (and check on script updates if that has been added or not)
    Example:
    I like to use the old e17setroot to make and set my backgrounds (.edj files) from jpg pics. That app is part of the obsolete e_utils package. It still compiles fine, so i add it to "apps" list on easy_e17.sh and install it normally.

    - You can turn icon desktops visibility on/off by loading/unloading 'File Manager' module (on Configuration menu).

    -------------------
    For more information on e17, the Enlightenment Foundation Libraries and the applications that use them, please see:
    http://www.enlightenment.org.

    *Don't update without previously check the cvs update messages*
    here: http://cia.vc/stats/project/e/
    Besides information on whats going on, authors usually post warning of API breakage.
    Proceed with care on those occasions!

    Browse the cvs code on line, search for explanations, READMEs and details on code for each application check:
    e17 cvs tree


    Information, themes, icons, eye-candy and alike:
    http://www.get-e.org and http://e17-stuff.org

    Later on this thread i posted a mini-how on how to edit/change/create an e17 theme.
    * check it here *
    _________________________________________________
    THE BELOW HOW-TO IT'S ONLY FOR SPECIAL INSTALLATIONS AND REFERENCE PURPOSES.
    THE DEB PACKAGE MAKE INSTALL PROCESS MUCH SIMPLER.

    latest_old_HOWTO.pdf

    _________________________________________________
    Last edited by Rui Pais; September 14th, 2008 at 03:43 PM. Reason: typos and tips

  2. #2
    Join Date
    May 2006
    Location
    Brooklyn, NY, USA
    Beans
    629
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: HOWTO: installation of E17 from CVS (UPDATED)

    Thanks for the updated how-to. Looking forward to giving this a try as soon as I have the free time.
    For dark is the suede that mows like a harvest

  3. #3
    Join Date
    Jun 2006
    Location
    jaipur,India
    Beans
    79
    Distro
    Ubuntu Development Release

    Re: HOWTO: installation of E17 from CVS (UPDATED)

    -> PREPARING FOR PHASE 2...
    ------------------------------- Easy_e17.sh 1.1.4 ------------------------------
    Developers: Brian 'morlenxus' Miculcy
    David 'onefang' Seikel
    Contributors: Tim 'wtfoo' Zebulla
    Daniel G. '_ke' Siegel
    Stefan 'slax' Langner
    Massimiliano 'Massi' Calamelli
    Thomas 'thomasg' Gstaedtner
    --------------------------------------------------------------------------------
    Updates: http://omicron.homeip.net/projects/#easy_e17.sh
    Support: #e.de, #get-e (irc.freenode.net)
    morlenxus@gmx.net
    Patches: Generally accepted, please contact me!
    --------------------------------------------------------------------------------


    ----------------------------- Current Configuration ----------------------------
    Install path: /opt/e17
    CVS path: /home/gaurish/e17_cvs
    CVS server: server:anonymous@anoncvs.enlightenment.org:/var/cvs/e
    Logs path: /tmp/easy_e17/install_logs
    OS: Linux (Distribution: debian)

    Libraries: imlib2 edb eet evas ecore efreet epeg embryo edje epsilon esmart emotion engrave etk etk_extra evolve ewl exml enhance e_dbus
    Applications: e entrance eclair evfs edje_viewer edje_editor elicit elitaire emphasis empower engycad entrance_edit_gui entropy ephoto estickies exhibit expedite extrackt
    Miscellaneous: engage enthrall rage scrot
    Modules: alarm bling cpu deskshow emu flame forecasts language mail mem mixer moon net news photo rain screenshot slideshow snow taskbar tclock uptime weather winselector wlan
    Skipping: emotion entrance eclair evfs edje_viewer edje_editor elicit elitaire emphasis empower engycad entrance_edit_gui entropy ephoto estickies exhibit expedite extrackt engage enthrall rage emu flame moon rain snow language

    Script action: install
    --------------------------------------------------------------------------------

    -------------------------------- Build phase 2/3 -------------------------------
    - lib-compilation and installation
    - apps-compilation and installation
    --------------------------------------------------------------------------------


    --------------------------- Installing libraries (EFL) -------------------------
    - imlib2 ..................... ok
    - edb ........................ ok
    - eet ........................ ok
    - evas ....................... ok
    - ecore ...................... ok
    - efreet ..................... ok
    - epeg ....................... ok
    - embryo ..................... ok
    - edje ....................... ok
    - epsilon .................... ok
    - esmart ..................... ok
    - emotion .................... SKIPPED
    - engrave .................... ok
    - etk ........................ ok
    - etk_extra .................. ok
    - evolve ..................... ERROR!
    --------------------------------------------------------------------------------

    ----------------------------------- Last loglines ------------------------------
    mkdir .libs
    gcc -DHAVE_CONFIG_H -I. -I. -I../../src -I/opt/e17/include -I/opt/e17/include -I/opt/e17/include/etk -I/opt/e17/include -I/opt/e17/include -Wall -MT libevolve_la-evolve_constructor.lo -MD -MP -MF .deps/libevolve_la-evolve_constructor.Tpo -c evolve_constructor.c -fPIC -DPIC -o .libs/libevolve_la-evolve_constructor.o
    gcc -DHAVE_CONFIG_H -I. -I. -I../../src -I/opt/e17/include -I/opt/e17/include -I/opt/e17/include/etk -I/opt/e17/include -I/opt/e17/include -Wall -MT libevolve_la-evolve_lib.lo -MD -MP -MF .deps/libevolve_la-evolve_lib.Tpo -c evolve_lib.c -fPIC -DPIC -o .libs/libevolve_la-evolve_lib.o
    evolve_lib.c: In function 'evolve_init':
    evolve_lib.c:91: error: 'Etk_Property_Value_Value' undeclared (first use in this function)
    evolve_lib.c:91: error: (Each undeclared identifier is reported only once
    evolve_lib.c:91: error: for each function it appears in.)
    evolve_lib.c:92: error: expected ';' before '___ett'
    evolve_lib.c:92: error: '___ett' undeclared (first use in this function)
    evolve_lib.c:93: error: expected ';' before '___ett'
    evolve_lib.c:94: error: expected ';' before '___ett'
    evolve_lib.c:95: error: expected ';' before '___ett'
    evolve_lib.c:96: error: expected ';' before '___ett'
    evolve_lib.c:97: error: expected ';' before '___ett'
    evolve_lib.c:98: error: expected ';' before '___ett'
    evolve_lib.c:99: error: expected ';' before '___ett'
    make[3]: *** [libevolve_la-evolve_lib.lo] Error 1
    make[3]: *** Waiting for unfinished jobs....
    gcc -DHAVE_CONFIG_H -I. -I. -I../../src -I/opt/e17/include -I/opt/e17/include -I/opt/e17/include/etk -I/opt/e17/include -I/opt/e17/include -Wall -MT libevolve_la-evolve_constructor.lo -MD -MP -MF .deps/libevolve_la-evolve_constructor.Tpo -c evolve_constructor.c -o libevolve_la-evolve_constructor.o >/dev/null 2>&1
    make[3]: Leaving directory `/home/gaurish/e17_cvs/e17/libs/evolve/src/lib'
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory `/home/gaurish/e17_cvs/e17/libs/evolve/src'
    make[1]: *** [all] Error 2
    make[1]: Leaving directory `/home/gaurish/e17_cvs/e17/libs/evolve/src'
    make: *** [all-recursive] Error 1
    --------------------------------------------------------------------------------

    -> Get more informations by checking the log file '/tmp/easy_e17/install_logs/evolve.log'!

    gaurish@Hero:~$


    Getting this error

  4. #4
    Join Date
    Oct 2004
    Beans
    2,324

    Re: HOWTO: installation of E17 from CVS (UPDATED)

    Hi,
    evolve is a lib for e17 that appeared on last version morlenxus script list related with etk (the e toolkit) it's a developer tool and not required to get a working e17.

    Do you used one of my suggestions for the --skip list? You must add evolve to --skip, either on a .easy_e17.conf (recommended), or passed on command line, like: sudo ./easy_e17.conf -i --skip=evolve.
    ___________________________________
    ESTRAGON: We've lost our rights?

  5. #5
    Join Date
    Apr 2005
    Location
    Canada
    Beans
    245
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: HOWTO: installation of E17 from CVS (UPDATED)

    Don't you need also to install
    Code:
     sudo aptitude install libdbus-1-dev
    before launching the installation.
    Before that I was unable to pass the step of e_dbus installation.
    Now everything seem fine (the installation is not completed yet....)
    Thanks again for this how to

  6. #6
    Join Date
    Oct 2004
    Beans
    2,324

    Re: HOWTO: installation of E17 from CVS (UPDATED)

    Quote Originally Posted by Turtle.net View Post
    Don't you need also to install
    Code:
     sudo aptitude install libdbus-1-dev
    before launching the installation.
    Before that I was unable to pass the step of e_dbus installation.
    Now everything seem fine (the installation is not completed yet....)
    Thanks again for this how to
    Hi, thanks for your comment.

    e_dbus is part of the proto section.Here it's the README file.
    It's "the start of a HAL api" (quote, italic its mine) and it ends with a "(very basic atm)". And isn't updated in the last 6 month... i wonder if it will ever goes beyond the initial start up...


    The main direction i try to give to this how-to was avoid install proto or experimental stuff, more or less in the line, if it work without it, don't install it.
    Thats, imho, the best way to get a "stable", functional e17.

    So thats another one i would suggest to avoid.

    I note now that an installation based on an old version of the script, without some apps referred, would not install the new inclusions when one updates the script and it's installation.
    Thats why i don't have e_dbus neither on my --skip list nor installed on my machine.

    I will update the how-to with a reference for that.

    Thanks.
    Last edited by Rui Pais; September 16th, 2007 at 05:57 AM.
    ___________________________________
    ESTRAGON: We've lost our rights?

  7. #7
    Join Date
    Jul 2007
    Location
    here
    Beans
    45
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: HOWTO: installation of E17 from CVS (UPDATED)

    --------------------------- Installing libraries (EFL) -------------------------
    - imlib2 ..................... ok
    - edb ........................ ok
    - eet ........................ ok
    - evas ....................... ok
    - ecore ...................... ok
    - efreet ..................... ok
    - epeg ....................... ok
    - embryo ..................... ok
    - edje ....................... ok
    - epsilon .................... ok
    - esmart ..................... ok
    - emotion .................... ok
    - engrave .................... ok
    - etk ........................ ok
    - etk_extra .................. ok
    - evolve ..................... ERROR!
    --------------------------------------------------------------------------------

    ----------------------------------- Last loglines ------------------------------
    then mv -f ".deps/libevolve_la-evolve_constructor.Tpo" ".deps/libevolve_la-evolve_constructor.Plo"; else rm -f ".deps/libevolve_la-evolve_constructor.Tpo"; exit 1; fi
    gcc -DHAVE_CONFIG_H -I. -I. -I../../src -I/opt/e17/include -I/opt/e17/include -I/opt/e17/include/etk -I/opt/e17/include -I/opt/e17/include -Wall -MT libevolve_la-evolve_constructor.lo -MD -MP -MF .deps/libevolve_la-evolve_constructor.Tpo -c evolve_constructor.c -fPIC -DPIC -o .libs/libevolve_la-evolve_constructor.o
    gcc -DHAVE_CONFIG_H -I. -I. -I../../src -I/opt/e17/include -I/opt/e17/include -I/opt/e17/include/etk -I/opt/e17/include -I/opt/e17/include -Wall -MT libevolve_la-evolve_lib.lo -MD -MP -MF .deps/libevolve_la-evolve_lib.Tpo -c evolve_lib.c -fPIC -DPIC -o .libs/libevolve_la-evolve_lib.o
    evolve_lib.c: In function 'evolve_init':
    evolve_lib.c:91: error: 'Etk_Property_Value_Value' undeclared (first use in this function)
    evolve_lib.c:91: error: (Each undeclared identifier is reported only once
    evolve_lib.c:91: error: for each function it appears in.)
    evolve_lib.c:92: error: expected ';' before '___ett'
    evolve_lib.c:92: error: '___ett' undeclared (first use in this function)
    evolve_lib.c:93: error: expected ';' before '___ett'
    evolve_lib.c:94: error: expected ';' before '___ett'
    evolve_lib.c:95: error: expected ';' before '___ett'
    evolve_lib.c:96: error: expected ';' before '___ett'
    evolve_lib.c:97: error: expected ';' before '___ett'
    evolve_lib.c:98: error: expected ';' before '___ett'
    evolve_lib.c:99: error: expected ';' before '___ett'
    make[3]: *** [libevolve_la-evolve_lib.lo] Error 1
    make[3]: *** Waiting for unfinished jobs....
    gcc -DHAVE_CONFIG_H -I. -I. -I../../src -I/opt/e17/include -I/opt/e17/include -I/opt/e17/include/etk -I/opt/e17/include -I/opt/e17/include -Wall -MT libevolve_la-evolve_constructor.lo -MD -MP -MF .deps/libevolve_la-evolve_constructor.Tpo -c evolve_constructor.c -o libevolve_la-evolve_constructor.o >/dev/null 2>&1
    make[3]: Leaving directory `/home/administrator/e17_cvs/e17/libs/evolve/src/lib'
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory `/home/administrator/e17_cvs/e17/libs/evolve/src'
    make[1]: *** [all] Error 2
    make[1]: Leaving directory `/home/administrator/e17_cvs/e17/libs/evolve/src'
    make: *** [all-recursive] Error 1
    --------------------------------------------------------------------------------

    -> Get more informations by checking the log file '/tmp/easy_e17/install_logs/evolve.log'!


    I'm getting this^^ any suggestions?

  8. #8
    Join Date
    Oct 2004
    Beans
    2,324

    Re: HOWTO: installation of E17 from CVS (UPDATED)

    Quote Originally Posted by jjstein View Post
    ...

    I'm getting this^^ any suggestions?
    yes, #4
    ___________________________________
    ESTRAGON: We've lost our rights?

  9. #9
    Join Date
    May 2005
    Location
    At home
    Beans
    486

    Re: HOWTO: installation of E17 from CVS (UPDATED)

    Just want to say thanks Rui Pais, the Ubuntu community couldn't ask for a better advocate for the beautiful WM also known as Enlightenment17. This was great HOWTO and it worked like a charm.
    Try the beautiful Enlightenment17 distro OzOS. | Easy way to install Enlightenment17 from CVS.
    Thanks Rui Pai for all you work intergrating this beautiful Desktop Shell with Ubuntu.

  10. #10
    Join Date
    Oct 2004
    Beans
    2,324

    Re: HOWTO: installation of E17 from CVS (UPDATED)

    Thanks Freddy, glad it worked ok
    Yes, e17 is great, not only beautiful but very functional and economic (on resources). I use it for at least 2 years... and i find very hard to on a computer without it (addicted here )



    ----------------------

    I take the opportunity to point to 2 new aspects of today CVS code.

    1st, related with Turtle.net previous post and my comments.
    e_dbus recieved an update today, something that didn't happen, i think, for a long time.
    So apparently it's not a dead project. Here a link for the changes log.

    2nd. After a long time the module calendar was recover from dead, integrated in the shelf api and start a new life
    Right now is very simple, just shows numerical and week day, but a full calendar on a floating windows seems to be on the forge.
    I was a user of calendar on the pre-shelf days, so I'm happy and expectant with this new toy. Here a pic of it:
    Click image for larger version. 

Name:	CapturaEcra-SM.jpg 
Views:	294 
Size:	8.2 KB 
ID:	44514
    I will update my Tips section with indications on how to get apps/modules not referred by the script.

    Have fun.
    Last edited by Rui Pais; September 27th, 2007 at 09:37 AM. Reason: resized pic
    ___________________________________
    ESTRAGON: We've lost our rights?

Page 1 of 98 1231151 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •