summaryrefslogtreecommitdiff
path: root/packages/eet
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2005-08-09 23:08:49 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-09 23:08:49 +0000
commit45b8741f7b138d039e0b1107ba1f1d41f61b5f26 (patch)
treeb69378d247af749ee22668c35ae64a26f49fbaf1 /packages/eet
parentcc66d34e4a411ce7e105df2ecb3d95265157f267 (diff)
Third (and hopefully last) EFL revamp before I hand over maintainership to
Justin Patrin. We now have a efl.bbclass that contains common code for the various libraries. This makes it possible to have very clean and concise bb's.
Diffstat (limited to 'packages/eet')
-rw-r--r--packages/eet/.mtn2git_empty0
-rw-r--r--packages/eet/eet-native_0.9.10.013.bb15
-rw-r--r--packages/eet/eet_0.9.10.013.bb23
3 files changed, 0 insertions, 38 deletions
diff --git a/packages/eet/.mtn2git_empty b/packages/eet/.mtn2git_empty
deleted file mode 100644
index e69de29bb2..0000000000
--- a/packages/eet/.mtn2git_empty
+++ /dev/null
diff --git a/packages/eet/eet-native_0.9.10.013.bb b/packages/eet/eet-native_0.9.10.013.bb
deleted file mode 100644
index 81f0a349fa..0000000000
--- a/packages/eet/eet-native_0.9.10.013.bb
+++ /dev/null
@@ -1,15 +0,0 @@
-PRIORITY = "optional"
-include eet_${PV}.bb
-inherit native
-DEPENDS = "zlib-native jpeg-native"
-LICENSE = "BSD"
-
-do_stage () {
- install -m 0755 src/bin/.libs/eet ${STAGING_BINDIR}
- oe_libinstall -C src/lib libeet ${STAGING_LIBDIR}/
- install -m 0644 ${S}/src/lib/Eet.h ${STAGING_INCDIR}/
-}
-
-do_install() {
- :
-}
diff --git a/packages/eet/eet_0.9.10.013.bb b/packages/eet/eet_0.9.10.013.bb
deleted file mode 100644
index c2a7296706..0000000000
--- a/packages/eet/eet_0.9.10.013.bb
+++ /dev/null
@@ -1,23 +0,0 @@
-DESCRIPTION = "EET is a tiny library designed to write an \
-arbitary set of chunks of data to a file and optionally compress \
-each chunk (very much like a zip file) and allow fast \
-random-access reading of the file later on."
-HOMEPAGE = "http://www.enlightenment.org"
-SECTION = "e/libs"
-PRIORITY = "optional"
-DEPENDS = "zlib jpeg"
-PR = "r0"
-LICENSE = "BSD"
-
-SRC_URI = "http://enlightenment.freedesktop.org/files/eet-${PV}.tar.gz"
-S = "${WORKDIR}/eet-${PV}"
-
-inherit autotools pkgconfig binconfig
-
-do_stage () {
- oe_libinstall -C src/lib libeet ${STAGING_LIBDIR}/
- install -m 0644 ${S}/src/lib/Eet.h ${STAGING_INCDIR}/
-}
-
-FILES_${PN} = "${libdir}/libeet*.so*"
-FILES_${PN}-dev += "${bindir} ${libdir}/pkgconfig"