1741
Comment:
|
15006
|
Deletions are marked like this. | Additions are marked like this. |
Line 7: | Line 7: |
<<TableOfContents(5)>> |
|
Line 8: | Line 10: |
Actually, it's related to my Enlightenment installation on DEVUAN, so without systemd, pulseandio and similar bloatware :) I was planning to get rid of the pulseaudio crap, but unfortunately an app I'm using (fldigi) need it. So I have to keep it... http://devuan.org for more details on my distro without systemd bloatware! ;) Many thanks to Raster for his patience, and the entire "e" IRC channel on irc.libera.cat for all the support I received and the patience to answer my silly questions! :) == Crazy unsorted notes here == {{{ This is mandatory: apt remove xserver-xorg-video-intel because the Intel driver is bugged. asbesto> ...ignoring it because telegram SUCKS. <asbesto> ahahahaha <raster> i don't see any reason e would ignore this <asbesto> me too <raster> it certainly is not here <raster> e might do things like show the window in a different deskto <raster> or show it iconified <raster> or other things <raster> but it wont just go "no - i will ignroe you and not map you at all" <raster> if e handled it the window would be mapped even if you cant see it <raster> it might be on another desktop <raster> etc <raster> the only way to know 100% for sure is to add debug to see to see every maprequest it gets <raster> you can put a line of debug in <raster> in e's src <raster> src/bin/e_comp_x.c <raster> in the _e_comp_x_show_request() function <raster> see the commented out <raster> //INF("X SHOW REQ: %u", ev->win); <raster> alter than a bit to be <raster> printf("X SHOW REQ: 0x%x\n", ev->win); <raster> now E will print "X SHOW REQ" every time it gets a map request from a client <raster> and the window id for the window <raster> so ... do this <raster> rebuild e <raster> (ctrl+alt+end after your rebuild to restart e to get the changes) <raster> then waych your log <raster> tail -f ~/.e-log.log | grep "X SHOW" <asbesto> OK <raster> now ... click on that image <raster> restart telegram from scratch of course <asbesto> I will do that later, I need a quiet time here (and now it isn't) <raster> use xwininfo -tree -root to find the window id of that media window in telegram <asbesto> in real life I mean <raster> you should see that window id request a map the first time <raster> and if telegram is asking a 2nd time... you should see the same print <asbesto> will do that! <raster> this is right before e goes and creates client struct info for a window and handles a new window }}} |
|
Line 15: | Line 73: |
=== BASE install without hardware accelerations and amusements === On your system: {{{ apt-get install joe mc git }}} |
=== BASE install === You need: {{{ apt-get install joe mc git build-essential autoconf autopoint check }}} (Yes, I use Joe as editor because I'm used to Wordstar commands since '80 ;) Any editor can work :) ) ==== BEFORE COMPILING ==== As stated in https://www.enlightenment.org/docs/distros/start : You will want to ensure the default prefix /usr/local is available to build tools. If you know what you are doing, you can change the prefix, but this here shall assume you do not, and the above prefix is used. These environment variables are used during build, so you may want to make them more permanent. {{{ export PATH=/usr/local/bin:"$PATH" export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:"$PKG_CONFIG_PATH" export LD_LIBRARY_PATH=/usr/local/lib:"$LD_LIBRARY_PATH" }}} Below choose one of the following CFLAGS to use. To ensure your code is compiled with decent optimzations you should also set this up in your environment: {{{ export CFLAGS="-O3 -ffast-math -march=native" }}} Note that if you wish to compile for older architectures than your current system, please look up the compiler documentation and replace -march=native with something appropriate. If you wish decently optimized code that is still debuggable (but that optimizations may still make a little hard to debug) you can do: {{{ export CFLAGS="-O2 -ffast-math -march=native -g -ggdb3" }}} If you want a really debuggable piece of code where optimizations mess with little to nothing at all use: {{{ export CFLAGS="-O -g -ffast-math -march=native -ggdb3" }}} ===== Runtime Library Linking ===== Note the LD_LIBRARY_PATH environment variable is set. You can ensure the system always supports /usr/local/lib by editing /etc/ld.so.conf or adding a file to /etc/ld.so.conf.d and simply have a line in either file that says: {{{ /usr/local/lib }}} And remember to run sudo ldconfig tool every time you install a library to ensure caches are updated. ===== Build Order ===== For libraries (build these before applications), build them in order: {{{ efl }}} Then any further applications or tools (in any order now) such as: {{{ enlightenment terminology rage }}} etc. |
Line 24: | Line 145: |
{{{ git clone git://git.enlightenment.org/core/efl.git }}} Require: {{{ apt-get install doxygen libssl-dev libjpeg-dev libsdl2-dev libluajit-5.1-dev libfribidi-dev libgif-dev libtiff-dev libmount-dev libblkid-dev libsndfile1-dev x11proto-print-dev libxp-dev libxtst-dev libbullet-dev }}} Compile with: {{{ ./configure --prefix=/usr --disable-pulseaudio --enable-i-really-know-what-i-am-doing-and-that-this-will-probably-break-things-and-i-will-fix-them-myself-and-send-patches-aba --disable-systemd --enable-sdl --disable-avahi --disable-gstreamer1 }}} |
{{{ git clone https://git.enlightenment.org/enlightenment/efl.git }}} ''(NOTA, da dentro una dir, se devi prelevare o aggiornare efl, per dire, fai solo "git pull" E BASTA) (guarda git howto)'' Require: meson / ninja! As root: {{{ apt-get install python3-pip apt install meson # was pip3 install meson but it doesnt work apt install ninja-build pkg-config cmake libssl-dev libjpeg-dev zlib1g-dev libglib2.0-dev libdbus-1-dev libharfbuzz-dev libpoppler-cpp-dev libspectre-dev librsvg2-dev doxygen libssl-dev libjpeg-dev libsdl2-dev libluajit-5.1-dev libfribidi-dev libgif-dev libtiff-dev libmount-dev libblkid-dev libsndfile1-dev x11proto-print-dev libxtst-dev libbullet-dev libfreetype6-dev libfontconfig1-dev libraw-dev libxcomposite-dev libtool libtool-bin libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev gnutls-dev libwebp gettext lua5.2 liblua5.2-dev libxdamage-dev libopenjp2-7-dev scim scim-dev libexif-dev # x11proto-print-dev and libwebp not found, I ignored them }}} {{{ ALSO 499 apt install libinput-dev TOO OLD, COMPILE BY HAND 500 apt search libinput 501 apt install mtdev-dev 502 apt install mtdev 503 apt-file search mtdev 504 apt install libmtdev-dev 505 apt-file search mtdev 506 ./config 507 ./configure 508 apt install libevdev-dev 509 ./configure 510 apt install libwacom-dev 511 ./configure 512 make 513 MAKE INSTALL 514 make install 515 ldconfig -v 516 apt install libopenjp2-dev 517 apt install libopenjp2 518 apt search libopenjp 519 apt search libopenjp2-7-dev 520 apt install libopenjp2-7-dev 521 apt install gbm 522 apt search gbm 523 apt install libgbm-dev 524 apt search scim 525 apt install libscim-dev 526 history 527 history }}} It seem that we need LUA now. SO: {{{ }}} Look at the meson_options.txt for opts to disable with -D as below! And the final step is: {{{ # CHECK IF YOU NEED Pulseaudio SHIT or not. here!\ meson --prefix=/usr/local -Dsystemd=false -Dpulseaudio=true -Davahi=false . build # -Dfb=true -Ddrm=true -Dwl=false -Dnetwork-backend=connman -Dbindings= -Dbuild-examples=false -Dbuild-tests=false -Dopengl=full # #define EGL_DMA_BUF_PLANE3_FD_EXT 0x3440 in src/modules/evas/engines/gl_drm/evas_engine.c }}} {{{ NOTES from raster: <raster> you dont need any of those options <raster> at all <raster> systemd support it runtime anyway <raster> it'll use systemsd if there (dlopen) if not - fall back to logind <raster> etc <asbesto> ah ok <raster> you need no options <raster> actually <asbesto> ok :) <asbesto> wow. good. <raster> well unles you dont want to build examples and tests <raster> and if u want wl supprot u want drm and wl options to be true <raster> fb is fbcon <raster> you may not need that naymore }}} {{{ ninja -C build sudo ninja -C build install sudo ldconfig }}} And that's it! BEWARE if you use that prefix, some libs will go in /usr/local/lib/x86_64-linux-gnu/ instead of /usr/lib/x86_64-linux-gnu/ but that's missing in /etc/ld.so.conf.d/somewhere, so ldconfig won't found the libraries and the following compilations will FAIL with missing lib errors! You need to add /usr/local/lib/x86_64-linux-gnu/ in /etc/ld.so.conf.d/somewhere accordingly and do ldconfig again, as root. '''THIS IS ALL SET UP IN DEVUAN daedalus''' ==== enlightenment ==== {{{ git clone http://git.enlightenment.org/enlightenment/enlightenment.git/ # I need to disable PAM here? Dunno. -Dpam=false in case? meson --prefix=/usr/local -Dsystemd=false -Dpam=false . build # -Dpulseaudio=true -Davahi=false options not recognized anymore? ninja -C build sudo ninja -C build install sudo ldconfig }}} ==== Terminology ==== {{{ git clone https://git.enlightenment.org/enlightenment/terminology.git meson . build ninja -C build sudo ninja -C build install }}} OLD: {{{ ./autogen.sh ./configure --prefix=/usr/local # but he does exactly that after autogen.sh ;) make make install }}} ==== ecrire, text editor ==== This doesn't use meson/ninja, it goes as follow: {{{ git clone https://git.enlightenment.org/enlightenment/ecrire.git mkdir build cd build cmake .. make make install }}} everything goes into /usr/local ;) ==== eterm ==== {{{ Sudo apt install libast-dev git clone https://git.enlightenment.org/enlightenment/eterm.git ./autogen.sh ./configure --prefix=/usr/local make sudo make install }}} ==== equate ==== this goes in /usr/local by default {{{ git clone https://git.enlightenment.org/enlightenment/equate.git ./autogen.sh make sudo make install }}} ==== wlan monitoring module ==== {{{ git clone http://git.enlightenment.org/enlightenment/modules/wlan.git ./autogen.sh ./configure --prefix=/usr/local make sudo make install }}} ==== cpu monitor module ==== {{{ git clone http://git.enlightenment.org/enlightenment/modules/cpu.git/ ./autogen.sh ./configure --prefix=/usr/local make sudo make install }}} ==== rage ==== Some warnings here, dunno if it's ok. {{{ git clone http://git.enlightenment.org/enlightenment/rage.git/ ./autogen.sh ninja -C build sudo ninja -C build install }}} === OLD - NOT NEEDED === ==== connman / econnman ==== for econnman you need: {{{ git clone https://git.enlightenment.org/bindings/python/python-efl.git apt-get install cython python setup.py build python setup.py install }}} and {{{ git clone https://git.enlightenment.org/enlightenment/econnman.git ./autogen.sh ./configure --prefix=/usr/local --localstatedir=/var make make install }}} {{{ apt-get install intltool openconnect libgtk-3-dev libgtk-3-0 git clone https://github.com/jgke/connman-gtk.git ./autogen.sh ./configure --prefix=/usr/local make make install }}} just launch "connman-gtk" ;) '''connman''' isn't an E package, so apt-get install connman ! :) but warning, it does remove wicd! so do it when you're almost sure. apt-get autoremove will help clean out stuff. or use packages by Martinx - ジェームズ (Devuan community) {{{ ppa:martinx/enlightenment }}} |
Line 41: | Line 450: |
{{{ git clone git://git.enlightenment.org/core/elementary.git }}} ==== enlightenment ==== {{{ git clone git://git.enlightenment.org/enlightenment.git }}} === connman / econnman === '''connman''' isn't an E package, so apt-get install connman ! :) for econnman you need: {{{ git clone git://git.enlightenment.org/bindings/python/python-efl.git }}} and {{{ git clone git://git.enlightenment.org/apps/econnman.git }}} or use packages by Martinx - ジェームズ (Devuan community) {{{ ppa:martinx/enlightenment |
Not needed if using the EFL from git. {{{ git clone https://git.enlightenment.org/enlightenment/elementary.git }}} poi ./autogen.sh ./configure === Starting the whole thing === It's not automatic in Devuan, dunno why. I installed lightdm. Also, I had to create this: {{{ asbesto@rover:~$ cat /usr/share/xsessions/e.desktop [Desktop Entry] Version=1.0 Name=Enlightenment Comment=Use this session to run E as your desktop environment Exec=enlightenment_start Icon= Type=Application DesktopNames=Enlightenment asbesto@rover:~$ }}} and now lightdm see it as a dm. :) === Tap to click - scroll bar shit === Added into InputClass section of /usr/share/X11/xorg.conf.d/50-synaptics.conf : {{{ Option "TapButton1" "1" Option "VertEdgeScroll" "1" |
Line 80: | Line 501: |
NOTE: {{{ To disable edge flipping, open the Settings Panel, go to the Input tab, and select Edge Bindings. You can disable all the edge bindings there. If you use /usr/local: Your installation prefix is *NOT* /usr so this means you need to ensure some files are visible to dbus otherwise services cannot be started when needed. You will need to do the following: System-wide installation: ln -s /usr/local/share/dbus-1/services/org.enlightenment.Ethumb.service /usr/share/dbus-1/services/org.enlightenment.Ethumb.service or add "/usr/local/share" to $XDG_DATA_DIRS User installation: ln -s /usr/local/share/dbus-1/services/org.enlightenment.Ethumb.service ~/.local/share/dbus-1/services/org.enlightenment.Ethumb.service In case of error: ./configure: line 8396: syntax error near unexpected token `win32-dll' ./configure: line 8396: `LT_INIT(win32-dll disable-static pic-only)' do root@rover:/home/asbesto/Desktop/src/e/efl# aclocal configure.ac:276: warning: macro 'AM_GNU_GETTEXT_VERSION' not found in library configure.ac:285: warning: macro 'AM_GNU_GETTEXT' not found in library configure.ac:374: warning: macro 'AM_PATH_LIBGCRYPT' not found in library and root@rover:/home/asbesto/Desktop/src/e/efl# autoreconf -i configure.ac:285: warning: The 'AM_PROG_MKDIR_P' macro is deprecated, and its use is discouraged. configure.ac:285: You should use the Autoconf-provided 'AC_PROG_MKDIR_P' macro instead, configure.ac:285: and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your Makefile.am files. and try again. IT DOESNT WORK. FUCK THAT SHIT edita configure alla riga 8396 e leva la merda di riga, che non c'entra un cazzo, rilancia configure and you see that works. ma anche installa libtool e libtool-bin, root@rover:/home/asbesto/Desktop/src/e/efl# apt-get install libtool libtool-bin poi ridai questo: autoheader \ && aclocal \ && libtoolize --ltdl --copy --force \ && automake --add-missing --copy \ && autoconf \ && ./configure con tutte le tue opzioni del cazzo Those are unnecessary, graphic acceleration will be use automagically if available. --enable-fb enable raw Framebuffer access. [default=disabled] --enable-eglfs enable hardware accelerated framebuffer access. [default=disabled] --enable-drm enable drm engine. [default=disabled] --enable-gl-drm enable gl drm engine. [default=disabled] --enable-egl enable EGL rendering. [default=disabled] }}} ---- CategoryMuseo |
Enlightenment
This wiki page is just a scratchpad for now. It may become a sort of howto, who knows?!? Actually, it's related to my Enlightenment installation on DEVUAN, so without systemd, pulseandio and similar bloatware
I was planning to get rid of the pulseaudio crap, but unfortunately an app I'm using (fldigi) need it. So I have to keep it...
http://devuan.org for more details on my distro without systemd bloatware!
Many thanks to Raster for his patience, and the entire "e" IRC channel on irc.libera.cat for all the support I received and the patience to answer my silly questions!
Crazy unsorted notes here
This is mandatory: apt remove xserver-xorg-video-intel because the Intel driver is bugged. asbesto> ...ignoring it because telegram SUCKS. <asbesto> ahahahaha <raster> i don't see any reason e would ignore this <asbesto> me too <raster> it certainly is not here <raster> e might do things like show the window in a different deskto <raster> or show it iconified <raster> or other things <raster> but it wont just go "no - i will ignroe you and not map you at all" <raster> if e handled it the window would be mapped even if you cant see it <raster> it might be on another desktop <raster> etc <raster> the only way to know 100% for sure is to add debug to see to see every maprequest it gets <raster> you can put a line of debug in <raster> in e's src <raster> src/bin/e_comp_x.c <raster> in the _e_comp_x_show_request() function <raster> see the commented out <raster> //INF("X SHOW REQ: %u", ev->win); <raster> alter than a bit to be <raster> printf("X SHOW REQ: 0x%x\n", ev->win); <raster> now E will print "X SHOW REQ" every time it gets a map request from a client <raster> and the window id for the window <raster> so ... do this <raster> rebuild e <raster> (ctrl+alt+end after your rebuild to restart e to get the changes) <raster> then waych your log <raster> tail -f ~/.e-log.log | grep "X SHOW" <asbesto> OK <raster> now ... click on that image <raster> restart telegram from scratch of course <asbesto> I will do that later, I need a quiet time here (and now it isn't) <raster> use xwininfo -tree -root to find the window id of that media window in telegram <asbesto> in real life I mean <raster> you should see that window id request a map the first time <raster> and if telegram is asking a 2nd time... you should see the same print <asbesto> will do that! <raster> this is right before e goes and creates client struct info for a window and handles a new window
Install from sources
Git repo:
BASE install
You need:
apt-get install joe mc git build-essential autoconf autopoint check
(Yes, I use Joe as editor because I'm used to Wordstar commands since '80 Any editor can work )
BEFORE COMPILING
As stated in https://www.enlightenment.org/docs/distros/start :
You will want to ensure the default prefix /usr/local is available to build tools. If you know what you are doing, you can change the prefix, but this here shall assume you do not, and the above prefix is used. These environment variables are used during build, so you may want to make them more permanent.
export PATH=/usr/local/bin:"$PATH" export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:"$PKG_CONFIG_PATH" export LD_LIBRARY_PATH=/usr/local/lib:"$LD_LIBRARY_PATH"
Below choose one of the following CFLAGS to use. To ensure your code is compiled with decent optimzations you should also set this up in your environment:
export CFLAGS="-O3 -ffast-math -march=native"
Note that if you wish to compile for older architectures than your current system, please look up the compiler documentation and replace -march=native with something appropriate.
If you wish decently optimized code that is still debuggable (but that optimizations may still make a little hard to debug) you can do:
export CFLAGS="-O2 -ffast-math -march=native -g -ggdb3"
If you want a really debuggable piece of code where optimizations mess with little to nothing at all use:
export CFLAGS="-O -g -ffast-math -march=native -ggdb3"
Runtime Library Linking
Note the LD_LIBRARY_PATH environment variable is set. You can ensure the system always supports /usr/local/lib by editing /etc/ld.so.conf or adding a file to /etc/ld.so.conf.d and simply have a line in either file that says:
/usr/local/lib
And remember to run sudo ldconfig tool every time you install a library to ensure caches are updated.
Build Order
For libraries (build these before applications), build them in order:
efl
Then any further applications or tools (in any order now) such as:
enlightenment terminology rage
etc.
efl
git clone https://git.enlightenment.org/enlightenment/efl.git
(NOTA, da dentro una dir, se devi prelevare o aggiornare efl, per dire, fai solo "git pull" E BASTA) (guarda git howto)
Require: meson / ninja!
As root:
apt-get install python3-pip apt install meson # was pip3 install meson but it doesnt work apt install ninja-build pkg-config cmake libssl-dev libjpeg-dev zlib1g-dev libglib2.0-dev libdbus-1-dev libharfbuzz-dev libpoppler-cpp-dev libspectre-dev librsvg2-dev doxygen libssl-dev libjpeg-dev libsdl2-dev libluajit-5.1-dev libfribidi-dev libgif-dev libtiff-dev libmount-dev libblkid-dev libsndfile1-dev x11proto-print-dev libxtst-dev libbullet-dev libfreetype6-dev libfontconfig1-dev libraw-dev libxcomposite-dev libtool libtool-bin libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev gnutls-dev libwebp gettext lua5.2 liblua5.2-dev libxdamage-dev libopenjp2-7-dev scim scim-dev libexif-dev # x11proto-print-dev and libwebp not found, I ignored them
ALSO 499 apt install libinput-dev TOO OLD, COMPILE BY HAND 500 apt search libinput 501 apt install mtdev-dev 502 apt install mtdev 503 apt-file search mtdev 504 apt install libmtdev-dev 505 apt-file search mtdev 506 ./config 507 ./configure 508 apt install libevdev-dev 509 ./configure 510 apt install libwacom-dev 511 ./configure 512 make 513 MAKE INSTALL 514 make install 515 ldconfig -v 516 apt install libopenjp2-dev 517 apt install libopenjp2 518 apt search libopenjp 519 apt search libopenjp2-7-dev 520 apt install libopenjp2-7-dev 521 apt install gbm 522 apt search gbm 523 apt install libgbm-dev 524 apt search scim 525 apt install libscim-dev 526 history 527 history
It seem that we need LUA now. SO:
Look at the meson_options.txt for opts to disable with -D as below!
And the final step is:
# CHECK IF YOU NEED Pulseaudio SHIT or not. here!\ meson --prefix=/usr/local -Dsystemd=false -Dpulseaudio=true -Davahi=false . build # -Dfb=true -Ddrm=true -Dwl=false -Dnetwork-backend=connman -Dbindings= -Dbuild-examples=false -Dbuild-tests=false -Dopengl=full # #define EGL_DMA_BUF_PLANE3_FD_EXT 0x3440 in src/modules/evas/engines/gl_drm/evas_engine.c
NOTES from raster: <raster> you dont need any of those options <raster> at all <raster> systemd support it runtime anyway <raster> it'll use systemsd if there (dlopen) if not - fall back to logind <raster> etc <asbesto> ah ok <raster> you need no options <raster> actually <asbesto> ok :) <asbesto> wow. good. <raster> well unles you dont want to build examples and tests <raster> and if u want wl supprot u want drm and wl options to be true <raster> fb is fbcon <raster> you may not need that naymore
ninja -C build sudo ninja -C build install sudo ldconfig
And that's it!
BEWARE if you use that prefix, some libs will go in /usr/local/lib/x86_64-linux-gnu/ instead of /usr/lib/x86_64-linux-gnu/ but that's missing in /etc/ld.so.conf.d/somewhere, so ldconfig won't found the libraries and the following compilations will FAIL with missing lib errors!
You need to add /usr/local/lib/x86_64-linux-gnu/ in /etc/ld.so.conf.d/somewhere accordingly and do ldconfig again, as root. THIS IS ALL SET UP IN DEVUAN daedalus
enlightenment
git clone http://git.enlightenment.org/enlightenment/enlightenment.git/ # I need to disable PAM here? Dunno. -Dpam=false in case? meson --prefix=/usr/local -Dsystemd=false -Dpam=false . build # -Dpulseaudio=true -Davahi=false options not recognized anymore? ninja -C build sudo ninja -C build install sudo ldconfig
Terminology
git clone https://git.enlightenment.org/enlightenment/terminology.git meson . build ninja -C build sudo ninja -C build install
OLD:
./autogen.sh ./configure --prefix=/usr/local # but he does exactly that after autogen.sh ;) make make install
ecrire, text editor
This doesn't use meson/ninja, it goes as follow:
git clone https://git.enlightenment.org/enlightenment/ecrire.git mkdir build cd build cmake .. make make install
everything goes into /usr/local
eterm
Sudo apt install libast-dev git clone https://git.enlightenment.org/enlightenment/eterm.git ./autogen.sh ./configure --prefix=/usr/local make sudo make install
equate
this goes in /usr/local by default
git clone https://git.enlightenment.org/enlightenment/equate.git ./autogen.sh make sudo make install
wlan monitoring module
git clone http://git.enlightenment.org/enlightenment/modules/wlan.git ./autogen.sh ./configure --prefix=/usr/local make sudo make install
cpu monitor module
git clone http://git.enlightenment.org/enlightenment/modules/cpu.git/ ./autogen.sh ./configure --prefix=/usr/local make sudo make install
rage
Some warnings here, dunno if it's ok.
git clone http://git.enlightenment.org/enlightenment/rage.git/ ./autogen.sh ninja -C build sudo ninja -C build install
OLD - NOT NEEDED
connman / econnman
for econnman you need:
git clone https://git.enlightenment.org/bindings/python/python-efl.git apt-get install cython python setup.py build python setup.py install
and
git clone https://git.enlightenment.org/enlightenment/econnman.git ./autogen.sh ./configure --prefix=/usr/local --localstatedir=/var make make install
apt-get install intltool openconnect libgtk-3-dev libgtk-3-0 git clone https://github.com/jgke/connman-gtk.git ./autogen.sh ./configure --prefix=/usr/local make make install
just launch "connman-gtk"
connman isn't an E package, so apt-get install connman ! but warning, it does remove wicd! so do it when you're almost sure. apt-get autoremove will help clean out stuff.
or use packages by Martinx - ジェームズ (Devuan community)
ppa:martinx/enlightenment
elementary
Not needed if using the EFL from git.
git clone https://git.enlightenment.org/enlightenment/elementary.git
poi ./autogen.sh ./configure
Starting the whole thing
It's not automatic in Devuan, dunno why.
I installed lightdm. Also, I had to create this:
asbesto@rover:~$ cat /usr/share/xsessions/e.desktop [Desktop Entry] Version=1.0 Name=Enlightenment Comment=Use this session to run E as your desktop environment Exec=enlightenment_start Icon= Type=Application DesktopNames=Enlightenment asbesto@rover:~$
and now lightdm see it as a dm.
Tap to click - scroll bar shit
Added into InputClass section of /usr/share/X11/xorg.conf.d/50-synaptics.conf :
Option "TapButton1" "1" Option "VertEdgeScroll" "1"
Repositories for E18/E19 ?
sudo add-apt-repository ppa:niko2040/e19 sudo apt-get update sudo apt-get install enlightenment
NOTE:
To disable edge flipping, open the Settings Panel, go to the Input tab, and select Edge Bindings. You can disable all the edge bindings there. If you use /usr/local: Your installation prefix is *NOT* /usr so this means you need to ensure some files are visible to dbus otherwise services cannot be started when needed. You will need to do the following: System-wide installation: ln -s /usr/local/share/dbus-1/services/org.enlightenment.Ethumb.service /usr/share/dbus-1/services/org.enlightenment.Ethumb.service or add "/usr/local/share" to $XDG_DATA_DIRS User installation: ln -s /usr/local/share/dbus-1/services/org.enlightenment.Ethumb.service ~/.local/share/dbus-1/services/org.enlightenment.Ethumb.service In case of error: ./configure: line 8396: syntax error near unexpected token `win32-dll' ./configure: line 8396: `LT_INIT(win32-dll disable-static pic-only)' do root@rover:/home/asbesto/Desktop/src/e/efl# aclocal configure.ac:276: warning: macro 'AM_GNU_GETTEXT_VERSION' not found in library configure.ac:285: warning: macro 'AM_GNU_GETTEXT' not found in library configure.ac:374: warning: macro 'AM_PATH_LIBGCRYPT' not found in library and root@rover:/home/asbesto/Desktop/src/e/efl# autoreconf -i configure.ac:285: warning: The 'AM_PROG_MKDIR_P' macro is deprecated, and its use is discouraged. configure.ac:285: You should use the Autoconf-provided 'AC_PROG_MKDIR_P' macro instead, configure.ac:285: and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your Makefile.am files. and try again. IT DOESNT WORK. FUCK THAT SHIT edita configure alla riga 8396 e leva la merda di riga, che non c'entra un cazzo, rilancia configure and you see that works. ma anche installa libtool e libtool-bin, root@rover:/home/asbesto/Desktop/src/e/efl# apt-get install libtool libtool-bin poi ridai questo: autoheader \ && aclocal \ && libtoolize --ltdl --copy --force \ && automake --add-missing --copy \ && autoconf \ && ./configure con tutte le tue opzioni del cazzo Those are unnecessary, graphic acceleration will be use automagically if available. --enable-fb enable raw Framebuffer access. [default=disabled] --enable-eglfs enable hardware accelerated framebuffer access. [default=disabled] --enable-drm enable drm engine. [default=disabled] --enable-gl-drm enable gl drm engine. [default=disabled] --enable-egl enable EGL rendering. [default=disabled]