diff options
Diffstat (limited to 'community/simgear')
-rw-r--r-- | community/simgear/PKGBUILD | 10 | ||||
-rw-r--r-- | community/simgear/osg-3.2.patch | 22 |
2 files changed, 5 insertions, 27 deletions
diff --git a/community/simgear/PKGBUILD b/community/simgear/PKGBUILD index 83df26b44..7bfbabc08 100644 --- a/community/simgear/PKGBUILD +++ b/community/simgear/PKGBUILD @@ -1,14 +1,14 @@ -# $Id: PKGBUILD 101482 2013-11-26 11:05:38Z spupykin $ +# $Id: PKGBUILD 105919 2014-02-19 10:21:57Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: William Rea <sillywilly@gmail.com> # Contributor: Hans Janssen <hans@janserv.xs4all.nl> pkgname=simgear -pkgver=2.12.1 -pkgrel=2 +pkgver=3.0.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') +depends=('glu' 'glut' 'freealut' 'plib' 'openscenegraph') makedepends=('boost' 'cmake' 'mesa') license=("GPL") #url="http://www.simgear.org" @@ -16,7 +16,7 @@ url="https://gitorious.org/fg" options=('!makeflags' 'staticlibs') #source=("SimGear-$pkgver.tar.gz::https://gitorious.org/fg/simgear/archive-tarball/release/$pkgver") source=("http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/simgear-$pkgver.tar.bz2") -md5sums=('8c483e13bce96f1dc27300a087fdb962') +md5sums=('097f55962dfc48b3e740334dbfda64a6') build() { cd $srcdir/simgear-$pkgver diff --git a/community/simgear/osg-3.2.patch b/community/simgear/osg-3.2.patch deleted file mode 100644 index 30d732ad6..000000000 --- a/community/simgear/osg-3.2.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -wbBur simgear-2.10.0/simgear/scene/material/EffectGeode.cxx simgear-2.10.0.q/simgear/scene/material/EffectGeode.cxx ---- simgear-2.10.0/simgear/scene/material/EffectGeode.cxx 2011-06-29 18:58:56.000000000 +0400 -+++ simgear-2.10.0.q/simgear/scene/material/EffectGeode.cxx 2013-07-25 16:14:24.268934729 +0400 -@@ -80,15 +80,15 @@ - int n = _effect->getGenerator(Effect::TANGENT); - tsg->generate(geometry, 0); // 0 is normal_unit, but I have no idea what that is! - if (n != -1 && !geometry->getVertexAttribArray(n)) -- geometry->setVertexAttribData(n, osg::Geometry::ArrayData(tsg->getTangentArray(), osg::Geometry::BIND_PER_VERTEX,GL_FALSE)); -+ geometry->setVertexAttribArray(n, tsg->getTangentArray(), osg::Array::BIND_PER_VERTEX); - - n = _effect->getGenerator(Effect::BINORMAL); - if (n != -1 && !geometry->getVertexAttribArray(n)) -- geometry->setVertexAttribData(n, osg::Geometry::ArrayData(tsg->getBinormalArray(), osg::Geometry::BIND_PER_VERTEX,GL_FALSE)); -+ geometry->setVertexAttribArray(n, tsg->getBinormalArray(), osg::Array::BIND_PER_VERTEX); - - n = _effect->getGenerator(Effect::NORMAL); - if (n != -1 && !geometry->getVertexAttribArray(n)) -- geometry->setVertexAttribData(n, osg::Geometry::ArrayData(tsg->getNormalArray(), osg::Geometry::BIND_PER_VERTEX,GL_FALSE)); -+ geometry->setVertexAttribArray(n, tsg->getNormalArray(), osg::Array::BIND_PER_VERTEX); - } - } - |