summaryrefslogtreecommitdiff
path: root/community/paraview/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-11-03 23:14:47 +0000
committerroot <root@rshg054.dnsready.net>2011-11-03 23:14:47 +0000
commitb625511a28fd8401f524474b5339e75328595150 (patch)
tree1daf0e94a58707bedb1a8ef5c3e98ce2cc9d7fa2 /community/paraview/PKGBUILD
parent6c10ff06abb7ca3a4db4c73624f73aafdd3b2e63 (diff)
Thu Nov 3 23:14:47 UTC 2011
Diffstat (limited to 'community/paraview/PKGBUILD')
-rw-r--r--community/paraview/PKGBUILD30
1 files changed, 16 insertions, 14 deletions
diff --git a/community/paraview/PKGBUILD b/community/paraview/PKGBUILD
index 7a9008e74..24d956ee6 100644
--- a/community/paraview/PKGBUILD
+++ b/community/paraview/PKGBUILD
@@ -4,25 +4,31 @@
pkgname=paraview
pkgver=3.10.1
-pkgrel=1
+pkgrel=4
pkgdesc='Parallel Visualization Application using VTK.'
arch=('i686' 'x86_64')
url='http://www.paraview.org'
license=('custom')
-depends=('qt' 'python2' 'libgl' 'hdf5' 'libxml2' 'unixodbc' 'postgresql-libs' 'libxt' 'libmysqlclient' 'mesa' 'openmpi')
+depends=('qt' 'python2' 'libgl' 'libxml2' 'unixodbc' 'postgresql-libs' 'libxt' 'libmysqlclient' 'mesa' 'openmpi') #'hdf5'
makedepends=('cmake' 'desktop-file-utils')
source=("http://paraview.org/files/v${pkgver:0:4}/ParaView-${pkgver}.tar.gz"
- "${pkgname}.profile"
- "${pkgname}.png"
- "${pkgname}.desktop")
+ 'paraview.png'
+ 'paraview.desktop'
+ 'fixkernelversioncheck.diff')
md5sums=('d8a9d4a997a720589ffd57568bcdd449'
- '534ef49689a7f630c98380f5ab4bf915'
'db623002bc71a257ddfdd0c9c7b14c3f'
- '4e4b7172ed18171c37446fd7c4f1e8f5')
+ '4e4b7172ed18171c37446fd7c4f1e8f5'
+ '9e137af23701f76fc727222ebac23389')
build() {
cd ParaView-${pkgver}
+ # patch vtk to fix http://www.vtk.org/Bug/view.php?id=12568
+ # remove next pkgver bump
+ cd VTK
+ patch -Np1 -i ${srcdir}/fixkernelversioncheck.diff
+ cd ..
+
sed -i '20 i#include <stddef.h>' VTK/Utilities/vtkmetaio/metaUtils.cxx
sed -i 's/stddef.h/cstddef/' VTK/Wrapping/Python/vtkPythonUtil.cxx
sed -i '36 i#include <vtksys/cstddef>' VTK/Wrapping/Python/PyVTKObject.cxx
@@ -42,7 +48,6 @@ build() {
-DBUILD_SHARED_LIBS:BOOL=ON \
-DBUILD_DOCUMENTATION:BOOL=OFF \
-DBUILD_EXAMPLES:BOOL=OFF \
- -DVTK_USE_RPATH:BOOL=OFF \
-DVTK_USE_SYSTEM_FREETYPE:BOOL=ON \
-DVTK_USE_SYSTEM_JPEG:BOOL=ON \
-DVTK_USE_SYSTEM_PNG:BOOL=ON \
@@ -69,16 +74,13 @@ package() {
make DESTDIR=${pkgdir} install
- # Install file to set PATH
- install -D ${srcdir}/${pkgname}.profile ${pkgdir}/etc/profile.d/${pkgname}.sh
-
# Install license
- install -Dm644 ${srcdir}/ParaView-${pkgver}/License_v1.2.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+ install -Dm644 ${srcdir}/ParaView-${pkgver}/License_v1.2.txt ${pkgdir}/usr/share/licenses/paraview/LICENSE
# Install desktop shortcuts
install -Dm644 ${srcdir}/paraview.png ${pkgdir}/usr/share/pixmaps/paraview.png
- desktop-file-install --dir=${pkgdir}/usr/share/applications ${srcdir}/${pkgname}.desktop
+ desktop-file-install --dir=${pkgdir}/usr/share/applications ${srcdir}/paraview.desktop
# Removes VTK plugin for designer - if you need, you can install vtk
- rm -rf ${pkgdir}/opt/${pkgname}/plugins
+ #rm -rf ${pkgdir}/opt/paraview/plugins
}