diff options
author | Shane Volpe <shanevolpe@gmail.com> | 2006-12-09 22:15:05 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2006-12-09 22:15:05 +0000 |
commit | b21d9ec51682078eac434f20b064cf63a4722c36 (patch) | |
tree | 208a04b081c39f29aa4bbd5281eafbfaea9b1ba6 /packages/directfb/directfb-examples_0.9.25.bb | |
parent | 3ee8fa7b3192fbc2b0cdb52fc7f4298c8f22057e (diff) |
packages/directfb: Add rc2 of directfb from #1618 by <shanevolpe@gmail.com>
Drop the old unfetchable versions of directFB and replace them with
the shiny rc2 of directFB.
This patch is from #1618 by Shane Volpe and adds tslib support to
directFB.
Diffstat (limited to 'packages/directfb/directfb-examples_0.9.25.bb')
-rw-r--r-- | packages/directfb/directfb-examples_0.9.25.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/directfb/directfb-examples_0.9.25.bb b/packages/directfb/directfb-examples_0.9.25.bb new file mode 100644 index 0000000000..28de29c4a6 --- /dev/null +++ b/packages/directfb/directfb-examples_0.9.25.bb @@ -0,0 +1,15 @@ +DESCRIPTION = "DirectFB examples" +DEPENDS = "directfb" +SECTION = "devel/examples" +LICENSE = "GPL" + +SRC_URI = "http://www.directfb.org/downloads/Extras/DirectFB-examples-${PV}.tar.gz" +S = "${WORKDIR}/DirectFB-examples-${PV}" + +inherit autotools + +do_configure_append() { +# find ${S} -type f | xargs sed -i 's:/usr/lib:${STAGING_LIBDIR}:' + find ${S} -type f | xargs sed -i 's:/usr/include:${STAGING_INCDIR}:' +} + |