aboutsummaryrefslogtreecommitdiffstats
path: root/libsdl
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-03-05 15:55:42 +0000
committerChris Larson <clarson@kergoth.com>2004-03-05 15:55:42 +0000
commit4e8e5a34ae4027238e32edeba6a9bebe0555787d (patch)
tree464331a304400e3464ed50822413d53e33f78e06 /libsdl
parentf7bee2cffadbb7147e2d18219625dcaab3abe483 (diff)
downloadopenembedded-4e8e5a34ae4027238e32edeba6a9bebe0555787d.tar.gz
Fix libao, libsdl-qpe, and microwindows staging targets.
BKrev: 4048a2feJlVAjuNXcFOTV5JY86xjCQ
Diffstat (limited to 'libsdl')
-rw-r--r--libsdl/libsdl-qpe_1.2.7.oe40
1 files changed, 40 insertions, 0 deletions
diff --git a/libsdl/libsdl-qpe_1.2.7.oe b/libsdl/libsdl-qpe_1.2.7.oe
index e69de29bb2..0715daeecb 100644
--- a/libsdl/libsdl-qpe_1.2.7.oe
+++ b/libsdl/libsdl-qpe_1.2.7.oe
@@ -0,0 +1,40 @@
+DESCRIPTION="Simple DirectMedia Layer - QtE-based Palmtop Environments Edition"
+SECTION=libs
+PRIORITY=optional
+MAINTAINER="Michael Lauer <mickey@Vanille.de>"
+RDEPENDS=libc6 libqpe1
+DEPENDS=virtual/libc virtual/libqpe
+PROVIDES=virtual/libsdl
+
+SRC_URI = http://www.libsdl.org/release/SDL-1.2.7.tar.gz \
+ file://${FILESDIR}/agawa-piro-mickey.patch;patch=1
+S = ${WORKDIR}/SDL-${PV}
+
+inherit autotools libtool
+
+EXTRA_OECONF = --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
+
+do_stage() {
+ oe_soinstall src/.libs/libSDL-1.2.so.0.7.0 ${STAGING_LIBDIR}
+ ln -sf libSDL-1.2.so.0.7.0 ${STAGING_LIBDIR}/libSDL.so
+ install -m 0755 src/main/libSDLmain.a ${STAGING_LIBDIR}/libSDLmain.a
+
+ install -d ${STAGING_INCDIR}/SDL
+ for f in include/*.h
+ do
+ install -m 0644 ${f} ${STAGING_INCDIR}/SDL
+ done
+
+ cat sdl-config | sed -e "s,-I/usr/include/SDL,-I${STAGING_INCDIR}/SDL," \
+ | sed -e "s,libdirs ,mickey_is_cool ," \
+ | sed -e "s,-lSDL ,-lSDL-1.2 , "> ${STAGING_BINDIR}/sdl-config
+ chmod a+rx ${STAGING_BINDIR}/sdl-config
+}
+