summaryrefslogtreecommitdiff
path: root/ecore/ecore_cvs.oe
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-05-27 06:54:59 +0000
committerChris Larson <clarson@kergoth.com>2004-05-27 06:54:59 +0000
commitb2d4aa53896eba39c93d756080b202b5a718186a (patch)
treec0f0b976a367d7e511df43f0bd2884ddc52ddde2 /ecore/ecore_cvs.oe
parent1bdd96a6f9492099d5fb702038c848f0904ab42e (diff)
Fix the broken ecore build by adding edb-native.
BKrev: 40b590c3DP-n07aO_k0PRnr9jxl2-g
Diffstat (limited to 'ecore/ecore_cvs.oe')
-rw-r--r--ecore/ecore_cvs.oe39
1 files changed, 39 insertions, 0 deletions
diff --git a/ecore/ecore_cvs.oe b/ecore/ecore_cvs.oe
index e69de29bb2..d14bff9273 100644
--- a/ecore/ecore_cvs.oe
+++ b/ecore/ecore_cvs.oe
@@ -0,0 +1,39 @@
+DESCRIPTION = "Ecore is the core event abstraction layer and X abstraction layer \
+that makes doing selections, Xdnd, general X stuff, and event loops, timeouts \
+and idle handlers fast, optimized, and convenient."
+HOMEPAGE = "http://www.enlightenment.org"
+SECTION = "libs"
+PRIORITY = "optional"
+PV = "${CVSDATE}"
+DEPENDS = "edb eet evas freetype edb-native"
+
+SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/enlightenment;module=e17/libs/ecore;date=${CVSDATE}"
+S = "${WORKDIR}/ecore"
+
+inherit autotools pkgconfig
+
+export EDB_CONFIG = "${STAGING_BINDIR}/edb-config"
+export EET_CONFIG = "${STAGING_BINDIR}/eet-config"
+export EVAS_CONFIG = "${STAGING_BINDIR}/evas-config"
+export FREETYPE_CONFIG = "${STAGING_BINDIR}/freetype-config"
+
+EXTRA_OECONF = "--enable-ecore-fb --enable-ecore-job \
+ --enable-ecore-evas-fb --disable-ecore-evas-x \
+ --disable-ecore-evas-gl --enable-ecore-con \
+ --enable-ecore-ipc --enable-ecore-txt \
+ --disable-ecore-x --enable-ecore-config \
+ --disable-openssl"
+
+parts = "Ecore Ecore_Job \
+ Ecore_Txt Ecore_Fb Ecore_Con \
+ Ecore_Ipc Ecore_Evas Ecore_Config"
+
+do_stage () {
+ for p in ${parts}; do
+ dir=`echo $p|tr A-Z a-z`
+ install -m 0644 ${S}/src/lib/$dir/$p.h ${STAGING_INCDIR}/
+ oe_libinstall -C src/lib/$dir lib$dir ${STAGING_LIBDIR}/
+ done
+ install -m 0644 ${S}/src/lib/ecore/Ecore_Data.h ${STAGING_INCDIR}/
+ install -m 0644 ${S}/ecore.m4 ${STAGING_DATADIR}/aclocal/
+}