summaryrefslogtreecommitdiffstats
path: root/academic
diff options
context:
space:
mode:
author Benjamin Trigona-Harany2014-02-02 00:41:34 +0100
committer Robby Workman2014-02-02 09:09:49 +0100
commit8ca20e71725cd3d3b814dbacd400941d2be6a382 (patch)
treeba95ad3b7477f967953594ff1512714fa3094140 /academic
parent3b3a793f974097bcf9baf45f64fb7191eb79084b (diff)
downloadslackbuilds-8ca20e71725cd3d3b814dbacd400941d2be6a382.tar.gz
gis/udig: Moved from Academic category.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'academic')
-rw-r--r--academic/udig/README11
-rw-r--r--academic/udig/doinst.sh3
-rw-r--r--academic/udig/slack-desc19
-rw-r--r--academic/udig/udig.SlackBuild110
-rw-r--r--academic/udig/udig.desktop9
-rw-r--r--academic/udig/udig.info10
6 files changed, 0 insertions, 162 deletions
diff --git a/academic/udig/README b/academic/udig/README
deleted file mode 100644
index 1ec38dd0d4..0000000000
--- a/academic/udig/README
+++ /dev/null
@@ -1,11 +0,0 @@
-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/academic/udig/doinst.sh b/academic/udig/doinst.sh
deleted file mode 100644
index 5fb28930db..0000000000
--- a/academic/udig/doinst.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-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/academic/udig/slack-desc b/academic/udig/slack-desc
deleted file mode 100644
index 9e9f96ac9b..0000000000
--- a/academic/udig/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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/academic/udig/udig.SlackBuild b/academic/udig/udig.SlackBuild
deleted file mode 100644
index 339a3ebf5e..0000000000
--- a/academic/udig/udig.SlackBuild
+++ /dev/null
@@ -1,110 +0,0 @@
-#!/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/academic/udig/udig.desktop b/academic/udig/udig.desktop
deleted file mode 100644
index 0919cc2c13..0000000000
--- a/academic/udig/udig.desktop
+++ /dev/null
@@ -1,9 +0,0 @@
-[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/academic/udig/udig.info b/academic/udig/udig.info
deleted file mode 100644
index a24e8d0fb8..0000000000
--- a/academic/udig/udig.info
+++ /dev/null
@@ -1,10 +0,0 @@
-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"