enlightenment@gentoo.org Project Enlightenment Enables support for asynchronous DNS using the net-dns/c-ares library Add gles support to the ecore-evas-wayland module Enable dev-libs/glib eventloop support Enable X11 Xprint support Enable support for inotify Provides easy to use canvas by gluing media-libs/evas and various input/output systems Build with tslib support for touchscreen devices Add support for dev-libs/wayland Ecore is a clean and tiny event loop library with many modules to do lots of convenient things for a programmer, to save time and effort. It's small and lean, designed to work on embedded systems all the way to large and powerful multi-cpu workstations. It serialises all system signals, events etc. into a single event queue, that is easily processed without needing to worry about concurrency. A properly written, event-driven program using this kind of programming doesn't need threads, nor has to worry about concurrency. It turns a program into a state machine, and makes it very robust and easy to follow. Ecore gives you other handy primitives, such as timers to tick over for you and call specified functions at particular times so the programmer can use this to do things, like animate, or time out on connections or tasks that take too long etc. Idle handlers are provided too, as well as calls on entering an idle state (often a very good time to update the state of the program). All events that enter the system are passed to specific callback functions that the program sets up to handle those events. Handling them is simple and other Ecore modules produce more events on the queue, coming from other sources such as file descriptors etc. Ecore also lets you have functions called when file descriptors become active for reading or writing, allowing for streamlined, non-blocking IO. Ecore may provide (if enabled) the following libraries: * ecore: main loop, signals, and base; * ecore_con: http/ftp (curl) access; * ecore_file: easy file manipulation (copy, move, symlink, remove), monitoring and directory (mkdir, mkdir -p, rm -fr); * ecore_txt: text charset conversion (iconv wrapper); * ecore_evas: integrates media-libs/evas into different input and output systems, providing easy to use canvas; * ecore_x, ecore_sdl, ecore_quartz, ecore_directfb, ecore_win32, ecore_wince, ecore_fb: access to different input/output systems, mapping them to ecore main loop and events; * ecore_imf, ecore_imf_evas: input-method framework used to integrate with different input methods such as virtual keyboards; * ecore_input, ecore_input_evas: abstraction of input events.