office/ganttproject: Updated for version 2.6.1_r1499.

Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
Chris Abela 2013-06-20 19:10:41 -03:00 committed by Niels Horn
parent 9b16df7127
commit b85fa9d8a7
4 changed files with 48 additions and 61 deletions

View File

@ -1,11 +1,9 @@
GanttProject - free tool for project scheduling and management
GanttProject is GPL-licensed (free software) Java based, project management
software that runs under the Windows, Linux and Mac OSX operating systems.
GanttProject is GPL-licensed (free software) Java based, project
management software that runs under the Windows, Linux and Mac OSX
operating systems.
It features a Gantt chart for project scheduling of tasks, and doing resource
management using resource load charts. It has a number of reporting options
(MS Project, HTML, PDF, spreadsheets).
This SlackBuild provides a scripts; /bin/gantproject that may be called
from a VT. Additionally it provides desktop integration.
It features a Gantt chart for project scheduling of tasks, and doing
resource management using resource load charts. It has a number of
reporting options (MS Project, HTML, PDF, spreadsheets).

View File

@ -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

View File

@ -1,20 +1,35 @@
#!/bin/sh
#
# Slackware build script for ganttproject
# Written by Chris Abela <chris.abela@maltats.com>
# October 2009
# Copyright 2013 Chris Abela, Malta
# All rights reserved.
#
# The CLI and GUI integration parts were inspired by the Mandriva Packages:
# ganttproject-2.0.9-1mer.noarch.rpm and ganttproject-2.0.9-1mer.src.rpm
# by Juan Luis Baptiste <jbaptiste@merlinux.org>
# These RPM's are hosted at http://www.ganttproject.biz
# 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=ganttproject
VERSION=${VERSION:-2.0.10}
ARCH=noarch # Leave this alone
VERSION=${VERSION:-2.6.1_r1499} # dashes in $VERSION confuse pkgtool
ARCH=noarch
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
SRCVERSION=${SRCVERSION:-2.6.1-r1499}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
@ -25,12 +40,12 @@ set -e
rm -rf $PKG
mkdir -p \
$TMP \
$PKG/{opt/ganttproject,usr/share/{applications,pixmaps,mime/packages}} \
$PKG/{opt/ganttproject,usr/{bin,share/{applications,pixmaps,mime/packages}}} \
$OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION-src
unzip $CWD/$PRGNAM-$VERSION-src.zip
cd $PRGNAM-$VERSION-src
rm -rf $PRGNAM-$SRCVERSION-src
unzip $CWD/$PRGNAM-$SRCVERSION-src.zip
cd $PRGNAM-$SRCVERSION-src
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
@ -42,15 +57,15 @@ cd ganttproject-builder
ant
cd dist-bin
cp -a eclipsito.jar ganttproject.sh plugins $PKG/opt/ganttproject
chmod 755 $PKG/opt/ganttproject/ganttproject.sh
cp -a eclipsito.jar ganttproject plugins $PKG/opt/ganttproject
chmod 755 $PKG/opt/ganttproject/ganttproject
# This is for CLI users:
install -m 755 -D $CWD/ganttproject $PKG/usr/bin/ganttproject
ln -s /opt/ganttproject/ganttproject $PKG/usr/bin/
# And this is for GUI users:
cp \
plugins/net.sourceforge.ganttproject_2.0.0/data/resources/logos/icon32.png \
plugins/net.sourceforge.ganttproject/data/resources/logos/icon32.png \
$PKG/usr/share/pixmaps/ganttproject.png
cat > $PKG/usr/share/applications/ganttproject.desktop << EOF
@ -58,8 +73,7 @@ cat > $PKG/usr/share/applications/ganttproject.desktop << EOF
Encoding=UTF-8
Name=GanttProject
Comment="GanttProject is a tool for creating a project schedule by means of Gantt Chart."
Comment[mt]="GanttProject huwa għodda biex toħloq skeda għall proġett permezz ta Gantt Chart."
Exec=/opt/ganttproject/ganttproject.sh
Exec=/opt/ganttproject/ganttproject
Icon=ganttproject.png
Terminal=false
Type=Application
@ -71,10 +85,10 @@ EOF
cat > $PKG/usr/share/mime/packages/ganttproject.xml << EOF
<?xml version="1.0"?>
<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>
<mime-type type="application/x-ganttproject">
<comment>Ganttproject Document</comment>
<glob pattern="*.gan" />
</mime-type>
<mime-type type="application/x-ganttproject">
<comment>Ganttproject Document</comment>
<glob pattern="*.gan" />
</mime-type>
</mime-info>
EOF
@ -82,7 +96,7 @@ EOF
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cd ../../ganttproject
cp -a \
AUTHORS COPYING README \
AUTHORS LICENSE README ../ganttproject-builder/HouseBuildingSample.gan \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild

View File

@ -1,10 +1,10 @@
PRGNAM="ganttproject"
VERSION="2.0.10"
VERSION="2.6.1_r1499"
HOMEPAGE="http://www.ganttproject.biz"
DOWNLOAD="http://ganttproject.googlecode.com/files/ganttproject-2.0.10-src.zip"
MD5SUM="1a6f07ebe1b71d851df5ee474d25f5e2"
DOWNLOAD="http://ganttproject.googlecode.com/files/ganttproject-2.6.1-r1499-src.zip"
MD5SUM="905ccff601ffe378afffe92a9a2114ea"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="apache-ant"
MAINTAINER="Chris Abela"
EMAIL="chris.abela@maltats.com"
EMAIL="kristofru@gmail.com"