summaryrefslogtreecommitdiffstats
path: root/office/ganttproject/ganttproject
diff options
context:
space:
mode:
author Chris Abela <kristofru@gmail.com>2013-06-20 19:10:41 -0300
committer Niels Horn <niels.horn@slackbuilds.org>2013-06-20 19:10:41 -0300
commitb85fa9d8a74c5b217c69e367bd6a6e6c3a0f8354 (patch)
tree2c23841521e5ea0b0755f04408c1be3b1e82116a /office/ganttproject/ganttproject
parent9b16df7127c63f8670ee34af63738106b6c6629d (diff)
downloadslackbuilds-b85fa9d8a74c5b217c69e367bd6a6e6c3a0f8354.tar.gz
slackbuilds-b85fa9d8a74c5b217c69e367bd6a6e6c3a0f8354.tar.xz
office/ganttproject: Updated for version 2.6.1_r1499.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'office/ganttproject/ganttproject')
-rw-r--r--office/ganttproject/ganttproject25
1 files changed, 0 insertions, 25 deletions
diff --git a/office/ganttproject/ganttproject b/office/ganttproject/ganttproject
deleted file mode 100644
index dee15ada8e..0000000000
--- a/office/ganttproject/ganttproject
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-# This script permits calling ganttproject from the /bin directly
-# rather than from /opt/ganttproject.
-# It supports white spaces in file names.
-# Chris Abela <chris.abela@maltats.com>
-
-# Usage: if /bin is in your $PATH, then:
-# $ ganttproject "World Domination Project.gan"
-# or simply: $ ganttproject
-
-[ $# -gt 1 ] && echo "Sorry! - Only one argument is allowed" && exit
-if [ $# -eq 1 ]
-then
- DIRNAME=`dirname "$1"`
- case "$DIRNAME" in
- .) DIRNAME="$PWD" ;;
- /) unset DIRNAME ;;
- esac
- BASENAME=`basename "$1"`
- cd /opt/ganttproject
- ./ganttproject.sh "$DIRNAME/$BASENAME"
-else
- cd /opt/ganttproject
- ./ganttproject.sh
-fi