diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/quake/quake2_svn.bb | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/quake/quake2_svn.bb')
-rw-r--r-- | recipes/quake/quake2_svn.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/recipes/quake/quake2_svn.bb b/recipes/quake/quake2_svn.bb new file mode 100644 index 0000000000..31491ad419 --- /dev/null +++ b/recipes/quake/quake2_svn.bb @@ -0,0 +1,39 @@ +DESCRIPTION = "Icculus.org quake2 engine" +LICENSE = "GPL" + +DEPENDS = "libsdl-x11 libxxf86dga" + +SRCREV = "205" +PV = "0.16.1+svnr${SRCREV}" + +SRC_URI = "svn://svn.icculus.org/quake2/;module=trunk \ + file://quake2-arm.patch;patch=1" + +S = "${WORKDIR}/trunk" + +export BUILD_SDLQUAKE2=YES +export OSTYPE=Linux +export ARCH=${TARGET_ARCH} +export BASE_CFLAGS="${TARGET_CC_ARCH} -Wall -pipe -Dstricmp=strcasecmp" +export OPT_CFLAGS="-O3 -ffast-math -funroll-loops -fomit-frame-pointer -fexpensive-optimizations" + +do_compile() { + sed -i -e s:=gcc:=${TARGET_PREFIX}gcc:g Makefile + oe_runmake -e +} + +do_install() { + install -d ${D}/${bindir} + echo -e "#!/bin/sh \ncd ${libdir}/quake2 && ./quake2 \$@ \n" > ${D}/${bindir}/quake2 + + ( cd ${S}/debug${TARGET_ARCH} ; ln -sf game$(uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc/ -e s/sparc64/sparc/ -e s/arm.*/arm/ -e s/sa110/arm/ -e s/alpha/axp/).so game${TARGET_ARCH}.so ) + install -d ${D}/${libdir}/quake2/baseq2/ctf + install -m 0755 ${S}/debug${TARGET_ARCH}/game${TARGET_ARCH}.so ${D}/${libdir}/quake2/baseq2 + install -m 0755 ${S}/debug${TARGET_ARCH}/ref*.so ${D}/${libdir}/quake2 + install -m 0755 ${S}/debug${TARGET_ARCH}/ctf/*.so ${D}/${libdir}/quake2/baseq2/ctf + install -m 0755 ${S}/debug${TARGET_ARCH}/quake2 ${D}/${libdir}/quake2 +} + +FILES_${PN} += "${libdir}" +FILES_${PN}-dbg += "${libdir}/quake2/baseq2/.debug ${libdir}/quake2/baseq2/ctf/.debug" + |