From 3abfc1ebef5936241997dd882938581c91743ee9 Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 16 Aug 2011 14:12:41 +0000 Subject: Tue Aug 16 14:12:40 UTC 2011 --- community-testing/flightgear/PKGBUILD | 32 -------------- community-testing/openscenegraph/PKGBUILD | 35 --------------- community-testing/simgear/PKGBUILD | 33 -------------- community-testing/simgear/build-fix.patch | 71 ------------------------------- 4 files changed, 171 deletions(-) delete mode 100644 community-testing/flightgear/PKGBUILD delete mode 100644 community-testing/openscenegraph/PKGBUILD delete mode 100644 community-testing/simgear/PKGBUILD delete mode 100644 community-testing/simgear/build-fix.patch (limited to 'community-testing') diff --git a/community-testing/flightgear/PKGBUILD b/community-testing/flightgear/PKGBUILD deleted file mode 100644 index 439e47c9c..000000000 --- a/community-testing/flightgear/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# $Id: PKGBUILD 54030 2011-08-11 23:28:19Z spupykin $ -# Maintainer: Sergej Pupykin -# Maintainer: William Rea -# Contributor: Hans Janssen - -pkgname=flightgear -pkgver=2.4.0 -pkgrel=1 -pkgdesc="An open-source, multi-platform flight simulator" -arch=(i686 x86_64) -depends=('simgear' 'libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion') # 'flightgear-data') -makedepends=('boost') -license=("GPL") -url="http://www.flightgear.org" -options=('!makeflags') -source=("$pkgname-$pkgver.tar.gz::https://gitorious.org/fg/flightgear/archive-tarball/release/$pkgver") -md5sums=('eb8d1ed8b1de5f1ac7926c9d0c2f37f8') - -build() { - cd $srcdir/fg-flightgear -# [ $NOEXTRACT -eq 1 ] || find -name \*.c\* -exec sed -i '1,2i#include ' {} \; -# [ $NOEXTRACT -eq 1 ] || find -name \*.c\* -exec sed -i '1,2i#include ' {} \; - [ -x configure ] || ./autogen.sh - [ -f Makefile ] || ./configure --prefix=/usr - make -} - -package() { - depends=('simgear' 'libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 'flightgear-data') - cd $srcdir/fg-flightgear - make DESTDIR=$pkgdir install -} diff --git a/community-testing/openscenegraph/PKGBUILD b/community-testing/openscenegraph/PKGBUILD deleted file mode 100644 index d405bd160..000000000 --- a/community-testing/openscenegraph/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 50969 2011-07-03 18:11:27Z spupykin $ -# Maintainer: Sergej Pupykin -# Maintainer: Hans Janssen -# Contributor: my64 -# Contributor: Colin Pitrat - -pkgname=openscenegraph -pkgver=3.0.0 -pkgrel=1 -pkgdesc="An Open Source, high performance real-time graphics toolkit" -arch=('i686' 'x86_64') -license=('custom:OSGPL') -url="http://www.openscenegraph.org" -depends=('giflib' 'jasper' 'librsvg' 'xine-lib' 'curl' 'pth') -makedepends=('cmake' 'libvncserver') -optdepends=('libvncserver' 'gdal' 'openexr' 'poppler-glib') -conflicts=('openthreads') -provides=('openthreads') -#source=(http://www.openscenegraph.org/downloads/stable_releases/OpenSceneGraph-$pkgver/source/OpenSceneGraph-$pkgver.zip) -source=("http://www.openscenegraph.org/downloads/stable_releases/OpenSceneGraph-3.0/source/OpenSceneGraph-$pkgver.zip") -md5sums=('121829b854349a9e9d1aebc25cf3e52d') - -build() { - cd OpenSceneGraph-$pkgver - [ $NOEXTRACT -eq 1 ] || cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release - sed -i 's|#include |//#include |' src/osgPlugins/curl/ReaderWriterCURL.cpp - make -} - -package() { - cd OpenSceneGraph-$pkgver - make DESTDIR="$pkgdir" install - install -D -m644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE" - [ -d "$pkgdir/usr/lib64" ] && mv "$pkgdir/usr/lib64" "$pkgdir/usr/lib" || true -} diff --git a/community-testing/simgear/PKGBUILD b/community-testing/simgear/PKGBUILD deleted file mode 100644 index 970dbf82b..000000000 --- a/community-testing/simgear/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# $Id: PKGBUILD 54019 2011-08-11 20:22:33Z spupykin $ -# Maintainer: Sergej Pupykin -# Maintainer: William Rea -# Contributor: Hans Janssen - -pkgname=simgear -pkgver=2.4.0 -pkgrel=1 -pkgdesc="A set of open-source libraries designed to be used as building blocks for quickly assembling 3d simulations, games, and visualization applications." -arch=(i686 x86_64) -depends=('glut' 'freealut' 'plib' 'openscenegraph') -makedepends=('boost') -license=("GPL") -#url="http://www.simgear.org" -url="https://gitorious.org/fg" -options=('!makeflags') -source=("SimGear-$pkgver.tar.gz::https://gitorious.org/fg/simgear/archive-tarball/release/$pkgver" - build-fix.patch) -md5sums=('e2c6fab13a74cd42992f8cfd5ad46cde' - '905a05cc1364c067b3b9574d41cef7fa') - -build() { - cd $srcdir/fg-simgear -# patch -p1 <$srcdir/build-fix.patch - [ -x configure ] || ./autogen.sh - [ -f Makefile ] || ./configure --prefix=/usr - make -} - -package() { - cd $srcdir/fg-simgear - make DESTDIR=$pkgdir install -} diff --git a/community-testing/simgear/build-fix.patch b/community-testing/simgear/build-fix.patch deleted file mode 100644 index da4ba81f8..000000000 --- a/community-testing/simgear/build-fix.patch +++ /dev/null @@ -1,71 +0,0 @@ -diff -wbBur SimGear-2.0.0/simgear/scene/model/SGClipGroup.cxx SimGear-2.0.0.my/simgear/scene/model/SGClipGroup.cxx ---- SimGear-2.0.0/simgear/scene/model/SGClipGroup.cxx 2010-02-17 18:39:21.000000000 +0300 -+++ SimGear-2.0.0.my/simgear/scene/model/SGClipGroup.cxx 2011-07-04 13:02:57.000000000 +0400 -@@ -70,9 +70,6 @@ - osg::ref_ptr mModelView; - }; - --osgUtil::RegisterRenderBinProxy --SGClipGroup::clipBinProxy("ClipRenderBin", new SGClipGroup::ClipRenderBin); -- - class SGClipGroup::CullCallback : public osg::NodeCallback { - public: - virtual void operator()(osg::Node* node, osg::NodeVisitor* nv) -diff -wbBur SimGear-2.0.0/simgear/scene/model/SGClipGroup.hxx SimGear-2.0.0.my/simgear/scene/model/SGClipGroup.hxx ---- SimGear-2.0.0/simgear/scene/model/SGClipGroup.hxx 2010-02-17 18:39:21.000000000 +0300 -+++ SimGear-2.0.0.my/simgear/scene/model/SGClipGroup.hxx 2011-07-04 13:03:01.000000000 +0400 -@@ -51,8 +51,6 @@ - class ClipRenderBin; - - std::vector > mClipPlanes; -- -- static osgUtil::RegisterRenderBinProxy clipBinProxy; - }; - - #endif -diff -wbBur SimGear-2.0.0/simgear/scene/model/SGPagedLOD.cxx SimGear-2.0.0.my/simgear/scene/model/SGPagedLOD.cxx ---- SimGear-2.0.0/simgear/scene/model/SGPagedLOD.cxx 2010-02-17 18:39:21.000000000 +0300 -+++ SimGear-2.0.0.my/simgear/scene/model/SGPagedLOD.cxx 2011-07-12 15:12:21.000000000 +0400 -@@ -21,6 +21,7 @@ - #include - #include - #include -+#include - - #include - #include -@@ -67,9 +68,12 @@ - unsigned childNum = getNumChildren(); - setTimeStamp(childNum, 0); - double priority=1.0; -+/* -+FIXME:!!! - dbp->requestNodeFile(getFileName(childNum),this,priority,0, - getDatabaseRequest(childNum), - _readerWriterOptions.get()); -+*/ - } - - bool SGPagedLOD_writeLocalData(const Object& obj, osgDB::Output& fw) -diff -wbBur SimGear-2.0.0/simgear/scene/sky/bbcache.cxx SimGear-2.0.0.my/simgear/scene/sky/bbcache.cxx ---- SimGear-2.0.0/simgear/scene/sky/bbcache.cxx 2010-02-17 18:39:21.000000000 +0300 -+++ SimGear-2.0.0.my/simgear/scene/sky/bbcache.cxx 2011-07-12 15:14:16.000000000 +0400 -@@ -31,6 +31,7 @@ - #include - #include - #include -+#include - - #include "bbcache.hxx" - -diff -wbBur SimGear-2.0.0/simgear/screen/tr.cxx SimGear-2.0.0.my/simgear/screen/tr.cxx ---- SimGear-2.0.0/simgear/screen/tr.cxx 2010-02-17 18:39:22.000000000 +0300 -+++ SimGear-2.0.0.my/simgear/screen/tr.cxx 2011-07-12 15:16:01.000000000 +0400 -@@ -145,6 +145,7 @@ - #endif - - #include -+#include - - #include "tr.h" - -- cgit v1.2.3-54-g00ecf