summaryrefslogtreecommitdiffstats
path: root/academic
diff options
context:
space:
mode:
author Benjamin Trigona-Harany <slackbuilds@jaxartes.net>2014-02-02 06:37:57 +0700
committer Robby Workman <rworkman@slackbuilds.org>2014-02-02 02:09:47 -0600
commitcea9c5812a286a23e1a2c6c641e37945fb09120c (patch)
treea52f4e3dce4a5894bd689ad6539277ecbf9f51fb /academic
parenta3758fe606413e19225d3496bedffe7e6aa47dfe (diff)
downloadslackbuilds-cea9c5812a286a23e1a2c6c641e37945fb09120c.tar.gz
slackbuilds-cea9c5812a286a23e1a2c6c641e37945fb09120c.tar.xz
gis/geoserver: Moved from Academic category.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'academic')
-rw-r--r--academic/geoserver/README20
-rw-r--r--academic/geoserver/data_dir.patch17
-rw-r--r--academic/geoserver/doinst.sh14
-rw-r--r--academic/geoserver/geoserver.SlackBuild73
-rw-r--r--academic/geoserver/geoserver.info10
-rw-r--r--academic/geoserver/geoserver.xml1
-rw-r--r--academic/geoserver/slack-desc19
7 files changed, 0 insertions, 154 deletions
diff --git a/academic/geoserver/README b/academic/geoserver/README
deleted file mode 100644
index 894c0569a7..0000000000
--- a/academic/geoserver/README
+++ /dev/null
@@ -1,20 +0,0 @@
-GeoServer is a Java-base server that allows users to publish and edit
-geospatial data using open standards.
-
-GeoServer is the reference implementation of the Open Geospatial Consortium's
-Web Feature Service (WFS) and Web Coverage Service (WCS) standards, as well as
-a high-performance Web Map Service (WMS). Additional functionality is available
-through the use of plugins.
-
-This SlackBuild will install GeoServer as a web application for a Tomcat
-servlet container. The SlackBuild will not overwrite any geoserver.war file
-that has been deployed using /var/lib/tomcat/webapps, but by default they will
-both be using the same /geoserver web path. This path can be changed from its
-default by editing /etc/tomcat/Catalina/localhost/geoserver.xml.
-
-The SlackBuild will create a data directory for GeoServer at /var/lib/geoserver
-but will not add any content, meaning that uninstalls, reinstalls, and upgrades
-will not affect existing data directories. Nevertheless, the data directory
-should still always be backed up prior to an upgrade. An empty data directory
-will be populated by a minimal set of configuration files when GeoServer is
-started for the first time.
diff --git a/academic/geoserver/data_dir.patch b/academic/geoserver/data_dir.patch
deleted file mode 100644
index b1a74707e3..0000000000
--- a/academic/geoserver/data_dir.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -Nur WEB-INF.orig/web.xml WEB-INF/web.xml
---- WEB-INF.orig/web.xml 2013-11-06 23:08:11.384791737 -0800
-+++ WEB-INF/web.xml 2013-11-06 23:05:56.599793825 -0800
-@@ -47,12 +47,10 @@
- </context-param>
- -->
-
-- <!--
- <context-param>
- <param-name>GEOSERVER_DATA_DIR</param-name>
-- <param-value>C:\eclipse\workspace\geoserver_trunk\cite\confCiteWFSPostGIS</param-value>
-+ <param-value>/var/lib/geoserver</param-value>
- </context-param>
-- -->
-
- <!-- pick up all spring application contexts -->
- <context-param>
diff --git a/academic/geoserver/doinst.sh b/academic/geoserver/doinst.sh
deleted file mode 100644
index 8c44f6584b..0000000000
--- a/academic/geoserver/doinst.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-
-config etc/tomcat/Catalina/localhost/geoserver.xml.new
diff --git a/academic/geoserver/geoserver.SlackBuild b/academic/geoserver/geoserver.SlackBuild
deleted file mode 100644
index 87e41d33c6..0000000000
--- a/academic/geoserver/geoserver.SlackBuild
+++ /dev/null
@@ -1,73 +0,0 @@
-#!/bin/sh
-
-# SlackBuild script for geoserver
-
-# Copyright 2013 Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
-# All rights reserved.
-#
-# 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=geoserver
-VERSION=${VERSION:-2.4.4}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-ARCH=noarch
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-rm -rf $TMP/$PRGNAM-$VERSION
-cd $TMP
-mkdir $PRGNAM-$VERSION
-cd $PRGNAM-$VERSION
-unzip $CWD/$PRGNAM-$VERSION-war.zip
-jar xvf $TMP/$PRGNAM-$VERSION/geoserver.war
-
-# patch web.xml so that it points to our custom data directory in /var/lib/geoserver
-patch -p0 --verbose < $CWD/data_dir.patch
-
-# install the war components
-mkdir -p $PKG/usr/share/geoserver
-cp -r index.html META-INF WEB-INF $PKG/usr/share/geoserver
-
-# set up the deploy for tomcat
-mkdir -p $PKG/etc/tomcat/Catalina/localhost
-cp $CWD/geoserver.xml $PKG/etc/tomcat/Catalina/localhost/geoserver.xml.new
-
-# create an empty data directory owned by the tomcat user
-mkdir -p $PKG/var/lib/geoserver
-chown -R tomcat.tomcat $PKG/var/lib/geoserver
-chmod 700 $PKG/var/lib/geoserver
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a GPL.txt LICENSE.txt $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir $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/geoserver/geoserver.info b/academic/geoserver/geoserver.info
deleted file mode 100644
index 71c7fe3cc2..0000000000
--- a/academic/geoserver/geoserver.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="geoserver"
-VERSION="2.4.4"
-HOMEPAGE="http://geoserver.org"
-DOWNLOAD="http://sourceforge.net/projects/geoserver/files/GeoServer/2.4.4/geoserver-2.4.4-war.zip"
-MD5SUM="e2e5e0f4fa37f5e756c514e529628514"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="apache-tomcat"
-MAINTAINER="Benjamin Trigona-Harany"
-EMAIL="slackbuilds@jaxartes.net"
diff --git a/academic/geoserver/geoserver.xml b/academic/geoserver/geoserver.xml
deleted file mode 100644
index 74fa2ce495..0000000000
--- a/academic/geoserver/geoserver.xml
+++ /dev/null
@@ -1 +0,0 @@
-<Context displayName="geoserver" docBase="/usr/share/geoserver" path="/geoserver"/>
diff --git a/academic/geoserver/slack-desc b/academic/geoserver/slack-desc
deleted file mode 100644
index 7780bc7bd7..0000000000
--- a/academic/geoserver/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------------------------------------------------------|
-geoserver: geoserver (geospatial server)
-geoserver:
-geoserver: GeoServer is a Java server for publishing geospatial data using the
-geoserver: Open Geospatial Consortium's Web Feature Service, Web Map Service and
-geoserver: Web Coverage Service standards.
-geoserver:
-geoserver: Homepage: http://geoserver.org
-geoserver:
-geoserver:
-geoserver:
-geoserver: