summaryrefslogtreecommitdiff
path: root/community/qgis/PKGBUILD
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-07-25 14:36:24 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-07-25 14:36:24 +0000
commitc52a1a6eb4ad278a7b6d9eeeb9c7c88f73ca8d8c (patch)
tree6ea332ea2bc8d6dfbfeba417c0e0d40a4608daaa /community/qgis/PKGBUILD
parent43983783a3e8bf61896eb93a2858a14bbaf3a53b (diff)
Mon Jul 25 14:36:20 UTC 2011
Diffstat (limited to 'community/qgis/PKGBUILD')
-rw-r--r--community/qgis/PKGBUILD59
1 files changed, 0 insertions, 59 deletions
diff --git a/community/qgis/PKGBUILD b/community/qgis/PKGBUILD
deleted file mode 100644
index ef4bf030a..000000000
--- a/community/qgis/PKGBUILD
+++ /dev/null
@@ -1,59 +0,0 @@
-# Maintainer: Thomas Dziedzic < gostrc at gmail >
-# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
-# Contributor: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
-
-pkgname=qgis
-pkgver=1.7.0
-pkgrel=2
-pkgdesc='A Geographic Information System (GIS) that supports vector, raster & database formats'
-url='http://qgis.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-# update to http://www.qgis.org/wiki/Building_QGIS_from_Source#Overview
-depends=('libmysqlclient' 'postgresql-libs' 'sqlite3' 'jasper' 'curl' 'qt' 'python2' 'python2-qt' 'giflib' 'xerces-c' 'cfitsio' 'qwt' 'gdal')
-makedepends=('cmake' 'grass' 'gsl' 'postgis' 'netcdf' 'fcgi' 'python2-sip' 'txt2tags')
-optdepends=('postgis: postgis support and SPIT plugin'
- 'fcgi: qgis mapserver'
- 'python2-sip: python-support'
- 'grass: grass plugin'
- 'gsl: georeferencer ')
-options=('!makeflags')
-source=("http://qgis.org/downloads/qgis-${pkgver}.tar.bz2"
- 'qgis.desktop'
- 'ticket_3378.diff')
-md5sums=('d8506990f52563d39c7b916f500f282f'
- '8ab66039f2aba519b92f52272ec3c13e'
- '402f3d39a344367fd55bdaa324deb797')
-
-build() {
- # Fix insecure RPATH is weird, but just works ;)
-# echo "os.system(\"sed -i '/^LFLAGS/s|-Wl,-rpath,.\+ ||g' gui/Makefile core/Makefile\")" >> python/configure.py.in
-
- #cd qgis-${pkgver}
- # fix compilation error https://trac.osgeo.org/qgis/ticket/3378
- #patch -Np3 -i ${srcdir}/ticket_3378.diff
- #cd ${srcdir}
-
- rm -rf build
- mkdir build
- cd build
-
- cmake ../qgis-${pkgver} \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_SKIP_RPATH=ON \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DGRASS_PREFIX=/opt/grass \
- -DQGIS_MANUAL_SUBDIR=share/man
-
- make
-}
-
-package() {
- cd build
-
- make DESTDIR=${pkgdir} install
-
- # install some freedesktop.org compatibility
- install -D -m644 ${srcdir}/qgis.desktop \
- ${pkgdir}/usr/share/applications/qgis.desktop
-}