About www-content/pages/docs/distros/debian-start.md.txt #1

Closed
opened 2023-03-25 13:35:54 -07:00 by defdefred · 2 comments

I'm using Debian 12 with testing repo and where is packages for efl:

# apt install libefl-all-dev
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances... Fait
Lecture des informations d'état... Fait      
Les paquets supplémentaires suivants seront installés : 
  autoconf automake autotools-dev efl-doc gir1.2-gst-plugins-base-1.0 gir1.2-gstreamer-1.0 gir1.2-gudev-1.0 icu-devtools libblkid-dev libbrotli-dev libcurl4-openssl-dev libdbus-1-dev libdrm-dev libdw-dev libedje-bin libegl-dev libeina-bin libelf-dev libembryo-bin libeolian-bin libeolian1 libflac-dev libfontconfig-dev libfontconfig1-dev libfreetype-dev libfribidi-dev libgbm-dev libgl-dev libgles-dev libgles1 libglib2.0-dev libglib2.0-dev-bin libglx-dev libgraphite2-dev libgstreamer-plugins-base1.0-dev libgstreamer1.0-dev libgudev-1.0-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libharfbuzz-subset0 libicu-dev libinput-dev libltdl-dev liblua5.2-dev liblz4-dev liblzma-dev libmount-dev libmpg123-dev libmtdev-dev libncurses-dev libogg-dev libopus-dev liborc-0.4-dev liborc-0.4-dev-bin libpciaccess-dev libpcre2-dev libpcre2-posix3 libpthread-stubs0-dev libpulse-dev libpulse-mainloop-glib0 libreadline-dev libselinux1-dev libsepol-dev libsndfile1-dev libsystemd-dev libtool libtool-bin libudev-dev libunwind-dev libvorbis-dev libwacom-dev libx11-dev libx11-xcb-dev libxau-dev libxcb-xkb-dev libxcb1-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-x11-dev libxrandr-dev libxrender-dev libxss-dev libxtst-dev m4 mesa-common-dev uuid-dev x11proto-dev xorg-sgml-doctools xtrans-dev
  
# dpkg --list libefl-all-dev
Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder
| État=Non/Installé/fichier-Config/dépaqUeté/échec-conFig/H=semi-installé/W=attend-traitement-déclenchements
|/ Err?=(aucune)/besoin Réinstallation (État,Err: majuscule=mauvais)
||/ Nom            Version      Architecture Description
+++-==============-============-============-====================================================
ii  libefl-all-dev 1.26.3-1+b1  amd64        Enlightenment Foundation Libraries development files

Will try to compile things...

I'm using Debian 12 with `testing` repo and where is packages for efl: ``` # apt install libefl-all-dev Lecture des listes de paquets... Fait Construction de l'arbre des dépendances... Fait Lecture des informations d'état... Fait Les paquets supplémentaires suivants seront installés : autoconf automake autotools-dev efl-doc gir1.2-gst-plugins-base-1.0 gir1.2-gstreamer-1.0 gir1.2-gudev-1.0 icu-devtools libblkid-dev libbrotli-dev libcurl4-openssl-dev libdbus-1-dev libdrm-dev libdw-dev libedje-bin libegl-dev libeina-bin libelf-dev libembryo-bin libeolian-bin libeolian1 libflac-dev libfontconfig-dev libfontconfig1-dev libfreetype-dev libfribidi-dev libgbm-dev libgl-dev libgles-dev libgles1 libglib2.0-dev libglib2.0-dev-bin libglx-dev libgraphite2-dev libgstreamer-plugins-base1.0-dev libgstreamer1.0-dev libgudev-1.0-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libharfbuzz-subset0 libicu-dev libinput-dev libltdl-dev liblua5.2-dev liblz4-dev liblzma-dev libmount-dev libmpg123-dev libmtdev-dev libncurses-dev libogg-dev libopus-dev liborc-0.4-dev liborc-0.4-dev-bin libpciaccess-dev libpcre2-dev libpcre2-posix3 libpthread-stubs0-dev libpulse-dev libpulse-mainloop-glib0 libreadline-dev libselinux1-dev libsepol-dev libsndfile1-dev libsystemd-dev libtool libtool-bin libudev-dev libunwind-dev libvorbis-dev libwacom-dev libx11-dev libx11-xcb-dev libxau-dev libxcb-xkb-dev libxcb1-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-x11-dev libxrandr-dev libxrender-dev libxss-dev libxtst-dev m4 mesa-common-dev uuid-dev x11proto-dev xorg-sgml-doctools xtrans-dev # dpkg --list libefl-all-dev Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder | État=Non/Installé/fichier-Config/dépaqUeté/échec-conFig/H=semi-installé/W=attend-traitement-déclenchements |/ Err?=(aucune)/besoin Réinstallation (État,Err: majuscule=mauvais) ||/ Nom Version Architecture Description +++-==============-============-============-==================================================== ii libefl-all-dev 1.26.3-1+b1 amd64 Enlightenment Foundation Libraries development files ``` Will try to compile things...
Author

No issue with first try :-)

$ cat > hello-world.c
#define EFL_BETA_API_SUPPORT 1
 
#include <Efl_Core.h>
 
void
efl_main(void *data EINA_UNUSED, const Efl_Event *ev EINA_UNUSED)
{
   printf("Hello World!\n");
   efl_exit(0);
}
 
EFL_MAIN()
$ gcc -o hello-world hello-world.c `pkg-config --cflags --libs ecore`
$ ls -l
total 24
-rwxr-xr-x 1 wize wize 16616 25 mars  21:41 hello-world
-rw-r--r-- 1 wize wize   190 25 mars  21:41 hello-world.c
$ ./hello-world 
Hello World!
No issue with first try :-) ``` $ cat > hello-world.c #define EFL_BETA_API_SUPPORT 1 #include <Efl_Core.h> void efl_main(void *data EINA_UNUSED, const Efl_Event *ev EINA_UNUSED) { printf("Hello World!\n"); efl_exit(0); } EFL_MAIN() $ gcc -o hello-world hello-world.c `pkg-config --cflags --libs ecore` $ ls -l total 24 -rwxr-xr-x 1 wize wize 16616 25 mars 21:41 hello-world -rw-r--r-- 1 wize wize 190 25 mars 21:41 hello-world.c $ ./hello-world Hello World! ```
Owner

I am a little puzzled with this 'issue' ... is there a problem here that needs fixing ? What is the purpose of this 'issue' ?

I am a little puzzled with this 'issue' ... is there a problem here that needs fixing ? What is the purpose of this 'issue' ?
Sign in to join this conversation.
No Label
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: enlightenment/www-content#1
No description provided.