diff options
author | Koen Kooi <koen@openembedded.org> | 2006-05-15 15:11:37 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-05-15 15:11:37 +0000 |
commit | a63ad478cfc271aa4c22ef045d55504459a2b19b (patch) | |
tree | 952d0592c3bab069c6256d8f7d3e65963d4a6740 /packages/libsdl | |
parent | b01cbb90a1ecbfc16155c331d38bab9280396d94 (diff) |
libsdl-x11: add 1.2.9
17:00 < koen> mickeyl: how about adding a recipe for libsdl-qpe 1.2.9?
17:00 < koen> mickeyl: uqm 0.5.0 requires >= 1.2.8, but I can't add it without breaking shlibs for the qpe one...
17:01 < mickeyl> koen: no way.
17:01 < mickeyl> koen: it took me a whole week to catch up with libsdl 1.2.7. i have no time to
redo all the complicated patches again :/
17:02 < koen> that's what I thought
17:04 < mickeyl> koen: we can add 129 but it will be x11 only
17:04 < mickeyl> koen: i don't see any sense to do that much of work for qte
Diffstat (limited to 'packages/libsdl')
-rw-r--r-- | packages/libsdl/libsdl-x11_1.2.9.bb | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/packages/libsdl/libsdl-x11_1.2.9.bb b/packages/libsdl/libsdl-x11_1.2.9.bb new file mode 100644 index 0000000000..50c1439410 --- /dev/null +++ b/packages/libsdl/libsdl-x11_1.2.9.bb @@ -0,0 +1,55 @@ +DESCRIPTION = "Simple DirectMedia Layer - X11 Edition" +SECTION = "libs" +PRIORITY = "optional" +DEPENDS = "alsa-lib libx11 libxext" +PROVIDES = "virtual/libsdl" +LICENSE = "LGPL" + +# NOTE: make sure to keep PR in sync with libsdl-qpe +PR = "r0" + +SRC_URI = "http://www.libsdl.org/release/SDL-${PV}.tar.gz \ + file://extra-keys.patch;patch=1 \ + file://acinclude.m4" +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 --enable-alsa --disable-esd --disable-arts \ + --disable-diskaudio --disable-nas --disable-esd-shared --disable-esdtest \ + --disable-mintaudio --disable-nasm --enable-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 --disable-video-qtopia --enable-dlopen" + +FILES_${PN} = "${libdir}/lib*.so.*" +FILES_${PN}-dev += "${bindir}/*config" + +do_configure_prepend() { + rm -f ${S}/acinclude.m4 + cp ${WORKDIR}/acinclude.m4 ${S}/ +} + +do_configure_append () { + cd ${S} + + # prevent libtool from linking libs against libstdc++, libgcc, ... + cat ${TARGET_PREFIX}libtool | sed -e 's/postdeps=".*"/postdeps=""/' > ${TARGET_PREFIX}libtool.tmp + mv ${TARGET_PREFIX}libtool.tmp ${TARGET_PREFIX}libtool +} + +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 + #oe_libinstall -a -C src/main libSDLmain ${STAGING_LIBDIR} + install -m 0644 src/main/libSDLmain.a ${STAGING_LIBDIR} + + install -d ${STAGING_INCDIR}/SDL + for f in include/*.h + do + install -m 0644 $f ${STAGING_INCDIR}/SDL/ + done +} |