From d78bc9181ae95a0241d6444aa12c4960fbc2ecd8 Mon Sep 17 00:00:00 2001 From: Justin Patrin Date: Tue, 16 May 2006 03:04:45 +0000 Subject: etox: drop deprecated package --- packages/efl/ewl_0.0.4.007.bb | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 packages/efl/ewl_0.0.4.007.bb (limited to 'packages/efl/ewl_0.0.4.007.bb') diff --git a/packages/efl/ewl_0.0.4.007.bb b/packages/efl/ewl_0.0.4.007.bb deleted file mode 100644 index 85b85e0c05..0000000000 --- a/packages/efl/ewl_0.0.4.007.bb +++ /dev/null @@ -1,23 +0,0 @@ -DESCRIPTION = "The Enlightened Widget Library, \ -a simple-to-use general purpose widget library based on the enlightenment foundation libraries." -# as of recent CVS HEAD, ewl no longer needs etox and no longer needs edb -DEPENDS = "edb virtual/evas virtual/ecore edje emotion" -RDEPENDS += "libewl-themes" -LICENSE = "MIT" -PR = "r1" - -inherit efl - -SRC_URI += "file://ewl-configure.patch;patch=1 \ - file://fix-ecore.patch;patch=1 \ - file://ecore-flags.patch;patch=1 \ - file://no-examples.patch;patch=1 \ - file://minmax.patch;patch=1" - -do_stage_append() { - for i in src/lib/ewl_*.h - do - install -m 0644 $i ${STAGING_INCDIR} - done -} - -- cgit v1.2.3 From ae7110b371cfa2773dc80ba545bbf5ff99440733 Mon Sep 17 00:00:00 2001 From: Justin Patrin Date: Tue, 16 May 2006 06:13:14 +0000 Subject: efl: fix SRC_URI for m4 dirs, fix ewl compilation --- packages/efl/ewl_0.0.4.007.bb | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 packages/efl/ewl_0.0.4.007.bb (limited to 'packages/efl/ewl_0.0.4.007.bb') diff --git a/packages/efl/ewl_0.0.4.007.bb b/packages/efl/ewl_0.0.4.007.bb new file mode 100644 index 0000000000..e89b668b93 --- /dev/null +++ b/packages/efl/ewl_0.0.4.007.bb @@ -0,0 +1,30 @@ +DESCRIPTION = "The Enlightened Widget Library, \ +a simple-to-use general purpose widget library based on the enlightenment foundation libraries." +# as of recent CVS HEAD, ewl no longer needs etox and no longer needs edb +DEPENDS = "edb virtual/evas virtual/ecore edje" +# emotion +RDEPENDS += "ewl-themes" +LICENSE = "MIT" +PR = "r1" + +inherit efl + +SRC_URI += "file://ewl-configure.patch;patch=1 \ + file://no-examples.patch;patch=1 \ + file://minmax.patch;patch=1 \ + ${E_CVS};module=e17/libs/evas/m4;date=20060501" + +do_configure_prepend() { + if [ -e "${WORKDIR}/m4" ]; then + install -d "${S}/m4" + install "${WORKDIR}/m4/"*.m4 "${S}/m4" + aclocal -I m4 + fi +} + +do_stage_append() { + for i in src/lib/ewl_*.h + do + install -m 0644 $i ${STAGING_INCDIR} + done +} -- cgit v1.2.3