mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-07 13:22:56 +02:00
projectlibre: update to 1.9.1
This commit is contained in:
parent
15d1f23369
commit
8b60714249
3 changed files with 18 additions and 18 deletions
|
@ -1,17 +1,17 @@
|
|||
--- projectlibre.sh
|
||||
--- projectlibre.sh.orig
|
||||
+++ projectlibre.sh
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/bin/bash
|
||||
+#!/bin/sh
|
||||
#
|
||||
#The contents of this file are subject to the Common Public Attribution License
|
||||
#Version 1.0 (the "License"); you may not use this file except in compliance with
|
||||
@@ -179,7 +179,7 @@
|
||||
OPENPROJ_HOME="$OPENPROJ_HOME0"
|
||||
#OPENPROJ_HOME can be harmful with multiple versions. disable
|
||||
JAVA_OK="1"
|
||||
- run_openproj --silentlyFail true "$@" || if [[ $? -eq 126 || $? -eq 127 || $? -eq 64 ]]; then
|
||||
+ run_openproj --silentlyFail true "$@" || if [ $? -eq 126 -o $? -eq 127 -o $? -eq 64 ]; then
|
||||
|
||||
#*******************************************************************************
|
||||
# The contents of this file are subject to the Common Public Attribution License
|
||||
@@ -199,7 +199,7 @@
|
||||
PROJECTLIBRE_HOME="$PROJECTLIBRE_HOME0"
|
||||
#PROJECTLIBRE_HOME can be harmful with multiple versions. disable
|
||||
JAVA_OK="1"
|
||||
- run_projectlibre --silentlyFail true "$@" || if [[ $? -eq 126 || $? -eq 127 || $? -eq 64 ]]; then
|
||||
+ run_projectlibre --silentlyFail true "$@" || if [ $? -eq 126 -o $? -eq 127 -o $? -eq 64 ]; then
|
||||
#126 command invoked cannot execute
|
||||
#127 command not found
|
||||
#64 bad java version/impl
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
--- projectlibre.sh
|
||||
--- projectlibre.sh.orig
|
||||
+++ projectlibre.sh
|
||||
@@ -63,8 +63,7 @@
|
||||
@@ -70,8 +70,7 @@
|
||||
#Default conf values
|
||||
JAVA_EXE="java"
|
||||
JAVA_OPTS="-Xms128m -Xmx768m"
|
||||
-#OPENPROJ_HOME0="/usr/share/projectlibre"
|
||||
-OPENPROJ_HOME0=`(dirname $0)`
|
||||
+OPENPROJ_HOME0="/usr/share/projectlibre"
|
||||
OPENPROJ_HOME="$OPENPROJ_HOME0"
|
||||
-#PROJECTLIBRE_HOME0="/usr/share/projectlibre"
|
||||
-PROJECTLIBRE_HOME0=`(dirname $0)`
|
||||
+PROJECTLIBRE_HOME0="/usr/share/projectlibre"
|
||||
PROJECTLIBRE_HOME="$PROJECTLIBRE_HOME0"
|
||||
LOG_LEVEL="DEBUG"
|
||||
LOG_FILE="/dev/null"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'projectlibre'
|
||||
pkgname=projectlibre
|
||||
version=1.8.0
|
||||
version=1.9.1
|
||||
revision=1
|
||||
depends="virtual?java-runtime virtual?awk"
|
||||
short_desc="Open source project management (replacement for MS project)"
|
||||
|
@ -8,7 +8,7 @@ maintainer="Piraty <piraty1@inbox.ru>"
|
|||
license="CPAL-1.0"
|
||||
homepage="http://www.projectlibre.com/"
|
||||
distfiles="${SOURCEFORGE_SITE}/projectlibre/1.8/projectlibre-${version}.tar.gz"
|
||||
checksum=5341154a14718b8d070d7ea0d35a1686a3c37c78ced2a1ef9a0bed3adfab0bae
|
||||
checksum=65ca96728eb5a31c3e23eb43181dde367d785a86b82f330ca52bc7b51c74a5bb
|
||||
|
||||
do_install() {
|
||||
_dest="usr/share/projectlibre"
|
||||
|
|
Loading…
Add table
Reference in a new issue