From: Victor Martinez Date: Tue, 19 Jan 2010 08:32:07 +0000 (+0000) Subject: e_dbus: Initial import (verified compilation) X-Git-Url: http://gitweb/?a=commitdiff_plain;h=fb8f76323a118256b5c3904e07a428493b54b847;p=attic%2Fports%2Fe17-cross.git e_dbus: Initial import (verified compilation) --- diff --git a/e_dbus/.footprint b/e_dbus/.footprint new file mode 100644 index 0000000..8067e10 --- /dev/null +++ b/e_dbus/.footprint @@ -0,0 +1,33 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/e-notify-send +-rwxr-xr-x root/root usr/bin/e_dbus_hal +-rwxr-xr-x root/root usr/bin/e_dbus_notification_daemon +-rwxr-xr-x root/root usr/bin/e_dbus_notify +-rwxr-xr-x root/root usr/bin/e_dbus_test +-rwxr-xr-x root/root usr/bin/e_dbus_test_client +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/E_DBus.h +-rw-r--r-- root/root usr/include/E_Hal.h +-rw-r--r-- root/root usr/include/E_Notification_Daemon.h +-rw-r--r-- root/root usr/include/E_Notify.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libedbus-ver-pre-svn-04.so.0 -> libedbus-ver-pre-svn-04.so.0.5.0 +-rwxr-xr-x root/root usr/lib/libedbus-ver-pre-svn-04.so.0.5.0 +-rw-r--r-- root/root usr/lib/libedbus.a +-rwxr-xr-x root/root usr/lib/libedbus.la +lrwxrwxrwx root/root usr/lib/libedbus.so -> libedbus-ver-pre-svn-04.so.0.5.0 +lrwxrwxrwx root/root usr/lib/libehal-ver-pre-svn-04.so.0 -> libehal-ver-pre-svn-04.so.0.5.0 +-rwxr-xr-x root/root usr/lib/libehal-ver-pre-svn-04.so.0.5.0 +-rw-r--r-- root/root usr/lib/libehal.a +-rwxr-xr-x root/root usr/lib/libehal.la +lrwxrwxrwx root/root usr/lib/libehal.so -> libehal-ver-pre-svn-04.so.0.5.0 +lrwxrwxrwx root/root usr/lib/libenotify-ver-pre-svn-04.so.0 -> libenotify-ver-pre-svn-04.so.0.5.0 +-rwxr-xr-x root/root usr/lib/libenotify-ver-pre-svn-04.so.0.5.0 +-rw-r--r-- root/root usr/lib/libenotify.a +-rwxr-xr-x root/root usr/lib/libenotify.la +lrwxrwxrwx root/root usr/lib/libenotify.so -> libenotify-ver-pre-svn-04.so.0.5.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/edbus.pc +-rw-r--r-- root/root usr/lib/pkgconfig/ehal.pc +-rw-r--r-- root/root usr/lib/pkgconfig/enotify.pc diff --git a/e_dbus/.md5sum b/e_dbus/.md5sum new file mode 100644 index 0000000..f11e526 --- /dev/null +++ b/e_dbus/.md5sum @@ -0,0 +1 @@ +3577b237cf79f10da33354a841618dca e_dbus-20091130.tar.bz2 diff --git a/e_dbus/Pkgfile b/e_dbus/Pkgfile new file mode 100644 index 0000000..051689b --- /dev/null +++ b/e_dbus/Pkgfile @@ -0,0 +1,30 @@ +# 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: edje hal + +name=e_dbus +version=20091130 +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 EDBUS_LIBS="-L$CLFS/usr/lib -ldbus-1 -lpthread -lrt -lecore" + export EDBUS_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/dbus-1.0 -I$CLFS/usr/lib/dbus-1.0/include" + export EVAS_LIBS="-L$CLFS/usr/lib -levas" + export EVAS_CFLAGS="-I$CLFS/usr/include" + export HAL_TEST_GUI_LIBS="-L$CLFS/usr/lib -lefreet" + export HAL_TEST_GUI_CFLAGS="-I$CLFS/usr/include/efreet" + + ./autogen.sh --build=$CHOST \ + --host=$CTARGET \ + --prefix=/usr + make + sed -e 's|libdir='/usr/lib'|libdir='$CLFS/usr/lib'|g' -i src/lib/hal/libehal.la + make install DESTDIR=$PKG +}