diff options
author | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2007-01-15 20:46:52 +0000 |
---|---|---|
committer | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2007-01-15 20:46:52 +0000 |
commit | 127b5109e790172290734d282ed6b00f1e9a559c (patch) | |
tree | 75864f6f7df49d446a995440be17146ab46dc0d0 /packages/obsolete/libsdl/libsdl-qpe_1.2.7.bb | |
parent | 6eafd8a3f7ce813e5c2e33a606d2b2754d6aacb1 (diff) | |
parent | aef114162d66ed9f45e616b631701b988dc95137 (diff) |
merge of '8f81066c1bea85c3191ff30a0d721cd1a3ccc041'
and '98ff999fc95d5b6c4cf5fd58a2c502aea38ea350'
Diffstat (limited to 'packages/obsolete/libsdl/libsdl-qpe_1.2.7.bb')
-rw-r--r-- | packages/obsolete/libsdl/libsdl-qpe_1.2.7.bb | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/packages/obsolete/libsdl/libsdl-qpe_1.2.7.bb b/packages/obsolete/libsdl/libsdl-qpe_1.2.7.bb new file mode 100644 index 0000000000..60c2a9d385 --- /dev/null +++ b/packages/obsolete/libsdl/libsdl-qpe_1.2.7.bb @@ -0,0 +1,57 @@ +DESCRIPTION = "Simple DirectMedia Layer - QtE-based Palmtop Environments Edition" +SECTION = "opie/libs" +PRIORITY = "optional" +DEPENDS = "virtual/libqpe1 libopie2" +PROVIDES = "virtual/libsdl" +LICENSE = "LGPL" + +# NOTE: make sure to keep PR in sync with libsdl-x11 +PR = "r9" + +SRC_URI = "http://www.libsdl.org/release/SDL-${PV}.tar.gz \ + file://agawa-piro-mickey.patch;patch=1 \ + file://pygame.patch;patch=1 \ + file://gcc34.patch;patch=1 \ + file://mouse.patch;patch=1 \ + file://kill-stdc++.patch;patch=1 \ + file://ipaq.patch;patch=1 \ + file://SDL-Akita.patch;patch=1 \ + file://fixlibs.patch;patch=1" +S = "${WORKDIR}/SDL-${PV}" + +inherit autotools binconfig + +EXTRA_OECONF = "--disable-static --disable-debug --enable-cdrom --enable-threads --enable-timers --enable-endian \ + --enable-file --enable-oss --disable-alsa --disable-esd --disable-arts \ + --disable-diskaudio --disable-nas --disable-esd-shared --disable-esdtest \ + --disable-mintaudio --disable-nasm --disable-video-x11 --disable-video-dga \ + --disable-video-fbcon --disable-video-directfb --disable-video-ps2gs \ + --disable-video-xbios --disable-video-gem --disable-video-dummy \ + --disable-video-opengl --enable-input-events --enable-pthreads \ + --disable-video-picogui --enable-video-qtopia --enable-dlopen" + +FILES_${PN} = "${libdir}/lib*.so.*" +FILES_${PN}-dev += "${bindir}/*config" + +do_compile_prepend() { + if [ "${PALMTOP_USE_MULTITHREADED_QT}" == "yes" ] + then + sed -i s,-lqte,-lqte-mt, src/Makefile + fi +} + +do_stage() { + oe_libinstall -so -C src libSDL ${STAGING_LIBDIR} + rm ${STAGING_LIBDIR}/libSDL.la + ln -sf libSDL.so ${STAGING_LIBDIR}/libSDL-1.2.so + install -m 0655 src/main/libSDLmain.a src/main/.libs/ + oe_libinstall -a -C src/main libSDLmain ${STAGING_LIBDIR} + + install -d ${STAGING_INCDIR}/SDL + for f in include/*.h + do + install -m 0644 $f ${STAGING_INCDIR}/SDL/ + done + + install -m 0644 *.m4 ${STAGING_DATADIR}/aclocal/ +} |