diff options
-rw-r--r-- | embryo/embryo_cvs.oe | 8 | ||||
-rw-r--r-- | etox/etox_cvs.oe | 11 |
2 files changed, 19 insertions, 0 deletions
diff --git a/embryo/embryo_cvs.oe b/embryo/embryo_cvs.oe index e5d66faee2..c974824d3d 100644 --- a/embryo/embryo_cvs.oe +++ b/embryo/embryo_cvs.oe @@ -6,6 +6,7 @@ basic programming structures such as in Edje EDCs." SECTION = "libs" MAINTAINER = "Chris Larson <kergoth@handhelds.org>" PV = "${CVSDATE}" +PR = "r1" SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/enlightenment;module=e17/libs/embryo" S = "${WORKDIR}/embryo" @@ -16,3 +17,10 @@ do_stage () { oe_libinstall -C src/lib libembryo ${STAGING_LIBDIR}/ install -m 0644 ${S}/src/lib/Embryo.h ${STAGING_INCDIR}/ } + +PACKAGES += "embryo-examples" + +FILES_${PN} = "${libdir}/libembryo*.so*" +FILES_${PN}-dev += "${bindir} ${libdir}/pkgconfig" +FILES_${PN}-examples = "${datadir}" + diff --git a/etox/etox_cvs.oe b/etox/etox_cvs.oe index d0f505e8b1..34d3c70df7 100644 --- a/etox/etox_cvs.oe +++ b/etox/etox_cvs.oe @@ -4,13 +4,24 @@ clipping, aligning and coloring fonts in different styles, and more." SECTION = "libs" DEPENDS = "edb evas ecore" PV = "${CVSDATE}" +PR = "r1" SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/enlightenment;module=e17/libs/etox" S = "${WORKDIR}/etox" inherit autotools pkgconfig binconfig +export EDB_CONFIG = "${STAGING_BINDIR}/edb-config" +export EVAS_CONFIG = "${STAGING_BINDIR}/evas-config" +export ECORE_CONFIG = "${STAGING_BINDIR}/ecore-config" + do_stage () { oe_libinstall -C src libetox ${STAGING_LIBDIR}/ install -m 0644 ${S}/src/Etox.h ${STAGING_INCDIR}/ } + +PACKAGES += "etox-examples" + +FILES_${PN} = "${libdir}/libetox*.so*" +FILES_${PN}-dev += "${bindir}/etox-config ${libdir}/pkgconfig" +FILES_${PN}-examples = "${bindir}/etox* ${datadir}" |