From 8ca20e71725cd3d3b814dbacd400941d2be6a382 Mon Sep 17 00:00:00 2001 From: Benjamin Trigona-Harany Date: Sun, 2 Feb 2014 06:41:34 +0700 Subject: gis/udig: Moved from Academic category. Signed-off-by: Willy Sudiarto Raharjo --- gis/udig/README | 11 +++++ gis/udig/doinst.sh | 3 ++ gis/udig/slack-desc | 19 ++++++++ gis/udig/udig.SlackBuild | 110 +++++++++++++++++++++++++++++++++++++++++++++++ gis/udig/udig.desktop | 9 ++++ gis/udig/udig.info | 10 +++++ 6 files changed, 162 insertions(+) create mode 100644 gis/udig/README create mode 100644 gis/udig/doinst.sh create mode 100644 gis/udig/slack-desc create mode 100644 gis/udig/udig.SlackBuild create mode 100644 gis/udig/udig.desktop create mode 100644 gis/udig/udig.info (limited to 'gis') diff --git a/gis/udig/README b/gis/udig/README new file mode 100644 index 0000000000..1ec38dd0d4 --- /dev/null +++ b/gis/udig/README @@ -0,0 +1,11 @@ +uDig is an open source desktop and internet GIS application framework. The +project goal is to provide a complete Java solution for desktop GIS data +access, editing and viewing. + +uDig aims to be: +- User friendly, providing a familiar graphical environment for GIS users; +- Desktop located, running as a thick client +- Internet oriented, consuming standard (WMS, WFS, WPS) and de facto (GeoRSS, + KML, tiles) geospatial web services; and, GIS ready, providing the + framework on which complex analytical capabilities can be built, and gradually + subsuming those capabilities into the main application. diff --git a/gis/udig/doinst.sh b/gis/udig/doinst.sh new file mode 100644 index 0000000000..5fb28930db --- /dev/null +++ b/gis/udig/doinst.sh @@ -0,0 +1,3 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi diff --git a/gis/udig/slack-desc b/gis/udig/slack-desc new file mode 100644 index 0000000000..9e9f96ac9b --- /dev/null +++ b/gis/udig/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +udig: udig (desktop GIS) +udig: +udig: uDig is an open source desktop GIS application framework that can be +udig: used as a standalone viewer and editor for spatial data. uDig +udig: supports PostGIS, shapefiles and other sources. +udig: +udig: Homepage: http://udig.refractions.net/ +udig: +udig: +udig: +udig: diff --git a/gis/udig/udig.SlackBuild b/gis/udig/udig.SlackBuild new file mode 100644 index 0000000000..339a3ebf5e --- /dev/null +++ b/gis/udig/udig.SlackBuild @@ -0,0 +1,110 @@ +#!/bin/sh +# +# SlackBuild for uDig +# +# Copyright 2012 Benjamin Trigona-Harany +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=udig +VERSION=${VERSION:-1.4.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "x86_64" ]; then + LIBDIRSUFFIX="64" + ZIPSUFFIX="x86_64" + GDALDIR="amd64" +else + LIBDIRSUFFIX="" + ZIPSUFFIX="x86" + GDALDIR="i386" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +rm -rf $TMP/$PRGNAM +cd $TMP +unzip $CWD/$PRGNAM-$VERSION.linux.gtk.$ZIPSUFFIX.zip +cd $PRGNAM +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +# uDig comes with its own JRE, but this is unnecessay as long as the JAI jars are +# installed in the correct location. This is how other distros avoid shipping a +# duplicate Java environment with uDig. +mkdir -p $PKG/usr/share/$PRGNAM/jai +cp -a jre/lib/ext/jai_*.jar $PKG/usr/share/$PRGNAM/jai +mkdir -p $PKG/usr/lib$LIBDIRSUFFIX/java/jre/lib/ext +ln -s /usr/share/$PRGNAM/jai/jai_codec.jar $PKG/usr/lib$LIBDIRSUFFIX/java/jre/lib/ext/jai_codec.jar +ln -s /usr/share/$PRGNAM/jai/jai_core.jar $PKG/usr/lib$LIBDIRSUFFIX/java/jre/lib/ext/jai_core.jar +ln -s /usr/share/$PRGNAM/jai/jai_imageio.jar $PKG/usr/lib$LIBDIRSUFFIX/java/jre/lib/ext/jai_imageio.jar + +# the GDAL libs need to be extracted from the JRE directory and placed in the LD_LIBRARY_PATH +# at uDig runtime +cp -a jre/lib/${GDALDIR}/libgdaljni.so{,.1} $PKG/usr/share/$PRGNAM +sed -i '2i\ +export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/bin/share/udig +' udig.sh + +mkdir -p $PKG/usr/share/$PRGNAM +cp -a configuration dropins features libcairo-swt.so p2 plugins *.sh udig_internal* $PKG/usr/share/$PRGNAM + +# gdal_data doesn't come with x86 +if [ "$ARCH" = "x86_64" ]; then + cp -a gdal_data $PKG/usr/share/$PRGNAM +fi + +mkdir -p $PKG/usr/bin +ln -s /usr/share/$PRGNAM/$PRGNAM.sh $PKG/usr/bin/$PRGNAM + +mkdir -p $PKG/usr/share/applications +cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop + +mkdir -p $PKG/usr/share/pixmaps/ +cp -a icon.xpm $PKG/usr/share/pixmaps/udig.xpm + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a LICENSE.txt epl-v10.html notice.html readme/* udig-$VERSION.html $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/gis/udig/udig.desktop b/gis/udig/udig.desktop new file mode 100644 index 0000000000..0919cc2c13 --- /dev/null +++ b/gis/udig/udig.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Name=uDig +GenericName=Desktop Internet GIS +Comment=Java-based GIS data viewer and editor +Exec=/usr/bin/udig +StartupNotify=true +Icon=udig +Type=Application +Categories=Education;Science;Geoscience;Geography; diff --git a/gis/udig/udig.info b/gis/udig/udig.info new file mode 100644 index 0000000000..a24e8d0fb8 --- /dev/null +++ b/gis/udig/udig.info @@ -0,0 +1,10 @@ +PRGNAM="udig" +VERSION="1.4.0" +HOMEPAGE="http://udig.refractions.net" +DOWNLOAD="http://udig.refractions.net/files/downloads/udig-1.4.0.linux.gtk.x86.zip" +MD5SUM="116b7f577ba08b1e2b7d0100588f5259" +DOWNLOAD_x86_64="http://udig.refractions.net/files/downloads/udig-1.4.0.linux.gtk.x86_64.zip" +MD5SUM_x86_64="b401a3fc48b33888dcf894104b4f903e" +REQUIRES="jdk" +MAINTAINER="Benjamin Trigona-Harany" +EMAIL="slackbuilds@jaxartes.net" -- cgit v1.2.3