diff options
author | Chris Larson <clarson@kergoth.com> | 2003-10-06 23:38:32 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-10-06 23:38:32 +0000 |
commit | 3cf9d6baf40e64c309d8bb4548293c47131ba507 (patch) | |
tree | 3788d5bed51ab4f5c3f06e3a85a81ef7d125e001 /directfb | |
parent | 52ad5b53bd0202539dcf89d04bd71528f6a19c05 (diff) |
BUGFIX: correct the do_stage and do_install targets for directfb, and explicitly disable sdl.
BKrev: 3f81fcf8l-1DDHR73DEFFmiFl8WZPg
Diffstat (limited to 'directfb')
-rw-r--r-- | directfb/directfb-0.9.19.oe | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/directfb/directfb-0.9.19.oe b/directfb/directfb-0.9.19.oe index e69de29bb2..bebb5684d2 100644 --- a/directfb/directfb-0.9.19.oe +++ b/directfb/directfb-0.9.19.oe @@ -0,0 +1,30 @@ +SECTION="libs" +PRIORITY="optional" +MAINTAINER="Michael Lauer <mickey@Vanille.de>" +RDEPENDS=libc6 libjpeg62 libpng3 zlib1g +DEPENDS=virtual/libc libjpeg62 libpng3 zlib1g + +SRC_URI=http://www.directfb.org/download/DirectFB/DirectFB-${PV}.tar.gz; +S=${WORKDIR}/DirectFB-${PV} + +inherit autotools libtool + +EXTRA_OECONF="--with-gfxdrivers=none --enable-libmpeg3=no --enable-freetype=no --enable-sdl=no" + +do_stage() { + oe_runmake -C src 'libdir=/target/lib' 'includedir=/target/include/directfb' \ + 'oldincludedir=/target/include' 'datadir=/share' \ + 'DESTDIR=${STAGING_DIR}' \ + 'INTERNALINCLUDEDIR=/target/include/directfb-internal' \ + install-internalincludeHEADERS install-libLTLIBRARIES + oe_runmake -C include 'libdir=/target/lib' 'includedir=/target/include/directfb' \ + 'oldincludedir=/target/include' 'datadir=/share' \ + 'DESTDIR=${STAGING_DIR}' \ + 'INTERNALINCLUDEDIR=/target/include/directfb-internal' \ + install-internalincludeHEADERS install-includeHEADERS + cp -f directfb.pc ${STAGING_DIR}/share/ +} + +do_install() { + oe_runmake 'DESTDIR=${D}' install +} |