diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-07-31 15:51:15 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-07-31 15:51:15 +0000 |
commit | 61ab96a9c42457d982168c1ddd1621cab8694e72 (patch) | |
tree | c826c2c62a20d1fbf6a9fb8f72b6d01d59945186 /ecore | |
parent | 72dd8bd4262e58a39a0304d12562436f088f3a8e (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into r2d2.tm.informatik.uni-frankfurt.de:/home/projekte/packages
2004/07/31 17:47:35+02:00 uni-frankfurt.de!mickey
fix meta-e
2004/07/31 14:10:13+02:00 uni-frankfurt.de!mickey
the E Widget Library now builds
2004/07/31 13:52:36+02:00 uni-frankfurt.de!mickey
edje now builds (insert applause.wav here)
2004/07/31 04:15:52+02:00 uni-frankfurt.de!mickey
fix prefix and exec-prefix bug
2004/07/31 04:15:16+02:00 uni-frankfurt.de!mickey
migrate enlightenment (and friends) to binconfig.oeclass
2004/07/31 04:12:47+02:00 uni-frankfurt.de!mickey
add binconfig.oeclass. This class cleans up the situation with packages utilizing foo-config scripts to gather cflags and libs etc. This class does a) eliminate the need for boiler plate code in the .oe files and b) differentiates between native and non-native packages which previously stepped on each other's toe because both kinds of packages wanted to install their foo-configs into STAGING_DIR. native packages now use foo-config-native. this class has been tested w/ the enlightenment stuff (evas,eet,edb,etox,imlib2,freetype,edje). please migrate .oe packages to it when you have a chance.
2004/07/31 02:43:44+02:00 uni-frankfurt.de!mickey
Merge bk://openembedded@openembedded.bkbits.net/packages
into r2d2.tm.informatik.uni-frankfurt.de:/home/projekte/packages
2004/07/31 01:27:45+02:00 uni-frankfurt.de!mickey
Merge bk://openembedded@openembedded.bkbits.net/packages
into r2d2.tm.informatik.uni-frankfurt.de:/home/projekte/packages
2004/07/30 17:44:51+02:00 uni-frankfurt.de!mickey
on the way to edje-native: complete edb-native and add ecore-native
BKrev: 410bbff3H9FfStU2Nxq1H1ECuGhU-Q
Diffstat (limited to 'ecore')
-rw-r--r-- | ecore/ecore-native_cvs.oe | 0 | ||||
-rw-r--r-- | ecore/ecore_cvs.oe | 7 |
2 files changed, 1 insertions, 6 deletions
diff --git a/ecore/ecore-native_cvs.oe b/ecore/ecore-native_cvs.oe new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/ecore/ecore-native_cvs.oe diff --git a/ecore/ecore_cvs.oe b/ecore/ecore_cvs.oe index 92b747f83c..dd17e302d0 100644 --- a/ecore/ecore_cvs.oe +++ b/ecore/ecore_cvs.oe @@ -11,7 +11,7 @@ PR = "r1" SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/enlightenment;module=e17/libs/ecore" S = "${WORKDIR}/ecore" -inherit autotools +inherit autotools binconfig export EDB_CONFIG = "${STAGING_BINDIR}/edb-config" export EET_CONFIG = "${STAGING_BINDIR}/eet-config" @@ -42,9 +42,4 @@ do_stage () { done install -m 0644 ${S}/src/lib/ecore/Ecore_Data.h ${STAGING_INCDIR}/ install -m 0644 ${S}/ecore.m4 ${STAGING_DATADIR}/aclocal/ - cat ecore-config | sed -e 's,/usr/include,${STAGING_INCDIR},g; \ - s,/usr/lib,${STAGING_LIBDIR},g; \ - s,/usr/bin,${STAGING_BINDIR},g; \ - s,/usr,${STAGING_LIBDIR}/..,g;' > ${STAGING_BINDIR}/ecore-config - chmod u+x ${STAGING_BINDIR}/ecore-config } |