summaryrefslogtreecommitdiff
path: root/community/simgear
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-02-20 03:34:20 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-02-20 03:34:20 +0000
commit2f8045ba14153d1665148e3cff527ce4f6bf66e5 (patch)
tree637a66d43f28d341e0504c3c75fea27e4e490312 /community/simgear
parent322e623017947f32cb26db4c80f8eec2c5736401 (diff)
Thu Feb 20 03:30:17 UTC 2014
Diffstat (limited to 'community/simgear')
-rw-r--r--community/simgear/PKGBUILD10
-rw-r--r--community/simgear/osg-3.2.patch22
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);
- }
- }
-