diff --git a/srcpkgs/ioquake3-rpi/files/ioquake3-build.sh.patch b/srcpkgs/ioquake3-rpi/files/ioquake3-build.sh.patch deleted file mode 100644 index d8ce580270c..00000000000 --- a/srcpkgs/ioquake3-rpi/files/ioquake3-build.sh.patch +++ /dev/null @@ -1,25 +0,0 @@ ---- build.sh.org 2013-01-11 16:52:50.064204113 +0000 -+++ build.sh 2013-01-11 18:14:24.595441089 +0000 -@@ -5,18 +5,18 @@ - - # directory containing the ARM shared libraries (rootfs, lib/ of SD card) - # specifically libEGL.so and libGLESv2.so --ARM_LIBS=/opt/bcm-rootfs/opt/vc/lib -+ARM_LIBS=/opt/vc/lib - SDL_LIB=lib - - # directory containing baseq3/ containing .pk3 files - baseq3 on CD --BASEQ3_DIR="/home/${USER}/" -+BASEQ3_DIR="/opt/ioquake3-rpi/" - - # directory to find khronos linux make files (with include/ containing - # headers! Make needs them.) --INCLUDES="-I/opt/bcm-rootfs/opt/vc/include -I/opt/bcm-rootfs/opt/vc/include/interface/vcos/pthreads" -+INCLUDES="-I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads" - - # prefix of arm cross compiler installed --CROSS_COMPILE=bcm2708- -+CROSS_COMPILE=@XBPS_CROSS_TRIPLET@ - - # clean - if [ $# -ge 1 ] && [ $1 = clean ]; then diff --git a/srcpkgs/ioquake3-rpi/files/quake3.desktop b/srcpkgs/ioquake3-rpi/files/quake3.desktop deleted file mode 100644 index def702039d3..00000000000 --- a/srcpkgs/ioquake3-rpi/files/quake3.desktop +++ /dev/null @@ -1,12 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=Quake III Arena -GenericName=Quake III -Comment=ioQuake3 - Quake III Open Source Engine -Exec=/usr/bin/quake3 -Icon=/usr/share/pixmaps/quake3.png -StartupNotify=true -Terminal=false -Type=Application -Categories=Qt;KDE;GNOME;Application;Game; - diff --git a/srcpkgs/ioquake3-rpi/files/quake3.launcher b/srcpkgs/ioquake3-rpi/files/quake3.launcher deleted file mode 100644 index a859d25aeda..00000000000 --- a/srcpkgs/ioquake3-rpi/files/quake3.launcher +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -cd "/opt/IOQ3_PATH" -exec ./IOQ3_BINARY $* - diff --git a/srcpkgs/ioquake3-rpi/files/quake3ded.launcher b/srcpkgs/ioquake3-rpi/files/quake3ded.launcher deleted file mode 100644 index a859d25aeda..00000000000 --- a/srcpkgs/ioquake3-rpi/files/quake3ded.launcher +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -cd "/opt/IOQ3_PATH" -exec ./IOQ3_BINARY $* - diff --git a/srcpkgs/ioquake3-rpi/template b/srcpkgs/ioquake3-rpi/template deleted file mode 100644 index 48fbbce9c12..00000000000 --- a/srcpkgs/ioquake3-rpi/template +++ /dev/null @@ -1,83 +0,0 @@ -# Template file for 'ioquake3-rpi' -pkgname=ioquake3-rpi -version=20130506 -revision=2 -short_desc="ioquake3 for Raspberry Pi" -maintainer="Orphaned " -license="GPL-2" -homepage="http://ioquake3.org/" -distfiles="http://ftp.gwdg.de/pub/misc/ftp.idsoftware.com/idstuff/quake3/linux/linuxq3apoint-1.32b-3.x86.run" -skip_extraction="linuxq3apoint-1.32b-3.x86.run" -checksum=c36132c5556b35e01950f1e9c646235033a5130f87ad776ba2bc7becf4f4f186 - -# XXX only for rpi -create_wrksrc=yes -archs="armv6l* armv7l*" -hostmakedepends="pkg-config git" -makedepends="SDL-devel rpi-userland-devel" - -do_configure() { - # Fetch ioquake3 for rpi - git clone git://github.com/raspberrypi/quake3.git $pkgname --depth=1 - - cd $pkgname - patch <${FILESDIR}/ioquake3-build.sh.patch - sed -e "s,@XBPS_CROSS_TRIPLET@,${XBPS_CROSS_TRIPLET}-,g" \ - -e "s,/opt/vc,${XBPS_CROSS_BASE}/opt/vc,g" \ - -e "s,SDL_LIB=.*,SDL_LIB=${XBPS_CROSS_BASE}/usr/lib,g" \ - -e 's,-lSDL,-lSDL -Wl\,-R/opt/vc/lib,' \ - -i build.sh - - # Extract Patch Files - cp $XBPS_SRCDISTDIR/${pkgname}-${version}/linuxq3apoint-1.32b-3.x86.run . - chmod +x linuxq3apoint-1.32b-3.x86.run - - ./linuxq3apoint-1.32b-3.x86.run --tar xf -} - -do_build() { - cd $pkgname - ./build.sh -} - -do_install() { - vmkdir opt/${pkgname}/baseq3 - vmkdir opt/${pkgname}/missionpack - # Copy the executables - install -m755 ${pkgname}/build/release-linux-arm/*.arm \ - ${DESTDIR}/opt/${pkgname} - install -Dm755 ${pkgname}/build/release-linux-arm/baseq3/*.so \ - ${DESTDIR}/opt/${pkgname}/baseq3/ - - install -Dm755 ${pkgname}/build/release-linux-arm/missionpack/*.so \ - ${DESTDIR}/opt/${pkgname}/missionpack/ - - # modify launcher scripts - cp ${FILESDIR}/quake3.launcher . - cp ${FILESDIR}/quake3ded.launcher . - - sed -i "s:IOQ3_BINARY:ioquake3.arm:" quake3.launcher - sed -i "s:IOQ3_BINARY:ioq3ded.arm:" quake3ded.launcher - sed -i "s:IOQ3_PATH:ioquake3-rpi:" quake3.launcher - sed -i "s:IOQ3_PATH:ioquake3-rpi:" quake3ded.launcher - - # Install Quake 3 Patch Files - install -m644 ${pkgname}/baseq3/*.pk3 \ - ${DESTDIR}/opt/${pkgname}/baseq3/ - - # Install Quake 3 Expansion Pack Patch Files - install -m644 ${pkgname}/missionpack/*.pk3 \ - ${DESTDIR}/opt/${pkgname}/missionpack/ - - # Install Launcher (Client) - vbin quake3.launcher quake3 - - # Install Launcher (Server) - vbin quake3ded.launcher quake3ded - - # Install Desktop File - vinstall ${FILESDIR}/quake3.desktop 644 usr/share/applications - - # Install Icon File - vinstall ${pkgname}/misc/quake3.png 644 usr/share/pixmaps -} diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template index b400bd4a8a5..09bd3a3ab01 100644 --- a/srcpkgs/removed-packages/template +++ b/srcpkgs/removed-packages/template @@ -178,6 +178,7 @@ replaces=" icecat-i18n-xh<=78.6.1_1 icecat-i18n-zh-CN<=78.6.1_1 icecat-i18n-zh-TW<=78.6.1_1 + ioquake3-rpi<=20130506_2 isl16<=0.16_2 js<=1.8.5_11 jwm-settings-manager<=2.1.5_1