libsdl-x11: add 1.2.9
authorKoen Kooi <koen@openembedded.org>
Mon, 15 May 2006 15:11:37 +0000 (15:11 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Mon, 15 May 2006 15:11:37 +0000 (15:11 +0000)
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

packages/libsdl/libsdl-x11_1.2.9.bb [new file with mode: 0644]

diff --git a/packages/libsdl/libsdl-x11_1.2.9.bb b/packages/libsdl/libsdl-x11_1.2.9.bb
new file mode 100644 (file)
index 0000000..50c1439
--- /dev/null
@@ -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
+}