# Description: Libraries which provide event loop functionality for E17. # URL: http://www.enlightenment.org/ # Maintainer: Victor Martinez, pitillo at ono dot com # Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org # Depends on: evas name=ecore version=20100202 release=1 source=(http://lokalix.dyndns.org/crux/distfiles/e17/$name-$version.tar.bz2) build() { cd $SRC/e17/$name export EINA_LIBS="-L$CLFS/usr/lib -leet -leina" export EINA_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/eina-0 -I$CLFS/usr/include/eina-0/eina" export GLIB_LIBS="-L$CLFS/usr/lib -lglib-2.0" export GLIB_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/glib-2.0 -I$CLFS/usr/lib/glib-2.0/include" export SDL_LIBS="-L$CLFS/usr/lib -lSDL -lpthread" export SDL_CFLAGS="-L$CLFS/usr/lib -I$CLFS/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT" export EVAS_LIBS="-L$CLFS/usr/lib -levas" export EVAS_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/freetype2 -I$CLFS/usr/include/eina-0 -I$CLFS/usr/include/eina-0/eina" export EET_LIBS="-L$CLFS/usr/lib -leet" export EET_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/eina-0 -I$CLFS/usr/include/eina-0/eina" export CFLAGS="$CFLAGS -I$CLFS/usr/include -I$CLFS/usr/include/X11 -I$CLFS/usr/include/X11/extensions" export LIBS="$LIBS -L$CLFS/usr/lib -lXrender -lX11 -lXext" # This will only be used when XCB backend selected (--enable-ecore-x-xcb) Problems with icccm atm export XCB_LIBS="-L$CLFS/usr/lib -lxcb -lpixman-1 -lxcb-image -lxcb-shm -lxcb-keysyms" export XCB_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/pixman-1" export XCB_RENDER_LIBS="-L$CLFS/usr/lib -lxcb-render" export XCB_RENDER_CFLAGS="-I$CLFS/usr/include" export XCB_COMPOSITE_LIBS="-L$CLFS/usr/lib -lxcb-composite" export XCB_COMPOSITE_CFLAGS="-I$CLFS/usr/include" export XCB_DAMAGE_LIBS="-L$CLFS/usr/lib -lxcb-damage" export XCB_DAMAGE_CFLAGS="-I$CLFS/usr/include" export XCB_DPMS_LIBS="-L$CLFS/usr/lib -lxcb-dpms" export XCB_DPMS_CFLAGS="-I$CLFS/usr/include" export XCB_RANDR_LIBS="-L$CLFS/usr/lib -lxcb-randr" export XCB_RANDR_CFLAGS="-I$CLFS/usr/include" export XCB_XFIXES_LIBS="-L$CLFS/usr/lib -lxcb-xfixes" export XCB_XFIXES_CFLAGS="-I$CLFS/usr/include" export XCB_SHAPE_LIBS="-L$CLFS/usr/lib -lxcb-shape" export XCB_SHAPE_CFLAGS="-I$CLFS/usr/include" export XCB_XINERAMA_LIBS="-L$CLFS/usr/lib -lxcb-xinerama" export XCB_XINERAMA_CFLAGS="-I$CLFS/usr/include" ./autogen.sh --build=$CHOST \ --host=$CTARGET \ --disable-nls \ --prefix=/usr \ --enable-ecore-evas-software-sdl \ --enable-ecore-evas-xrender-xcb \ --enable-ecore-evas-software-x11 \ --enable-ecore-evas-xrender-x11 make make install DESTDIR=$PKG }