summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/openstego/README4
-rw-r--r--system/openstego/openstego.SlackBuild13
-rw-r--r--system/openstego/openstego.info12
-rw-r--r--system/openstego/openstego.sh2
4 files changed, 21 insertions, 10 deletions
diff --git a/system/openstego/README b/system/openstego/README
index 5f232531a4..5f5c99ed88 100644
--- a/system/openstego/README
+++ b/system/openstego/README
@@ -1,3 +1,7 @@
+openstego (the free steganography solution)
+
+Note: openstego doesn't work with openjdk.
+
OpenStego is a tool implemented in Java for generic steganography,
with support for password-based encryption of the data.
diff --git a/system/openstego/openstego.SlackBuild b/system/openstego/openstego.SlackBuild
index 28ed888872..1bdad7e1dd 100644
--- a/system/openstego/openstego.SlackBuild
+++ b/system/openstego/openstego.SlackBuild
@@ -1,8 +1,9 @@
#!/bin/sh
-# Slackware build script for OpenStego
+# Slackware build script for openstego
-# Copyright 2012-2014 Fridrich von Stauffenberg <cancellor2@gmail.com>
+# Copyright 2012-2014 Fridrich von Stauffenberg <email removed>
+# Copyright 2018 B. Watson <yalhcru@gmail.com>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -22,8 +23,14 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+# 20180802 bkw:
+# - Take over maintenance.
+# - Update for v0.7.3.
+# - Increase java's allowed memory usage from 512M to 1024M in
+# openstego.sh. This matches upstream's recommendation.
+
PRGNAM=openstego
-VERSION=${VERSION:-0.6.1}
+VERSION=${VERSION:-0.7.3}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
diff --git a/system/openstego/openstego.info b/system/openstego/openstego.info
index bd1285886d..4827e4dd5b 100644
--- a/system/openstego/openstego.info
+++ b/system/openstego/openstego.info
@@ -1,10 +1,10 @@
PRGNAM="openstego"
-VERSION="0.6.1"
-HOMEPAGE="http://openstego.sourceforge.net"
-DOWNLOAD="http://downloads.sourceforge.net/openstego/openstego-0.6.1.zip"
-MD5SUM="86879a53207c78b0c2443df2538b4cf3"
+VERSION="0.7.3"
+HOMEPAGE="https://www.openstego.com/"
+DOWNLOAD="https://github.com/syvaidya/openstego/releases/download/openstego-0.7.3/openstego-0.7.3.zip"
+MD5SUM="65e6acca0faab0774c7b8a6433859c2e"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="jdk"
-MAINTAINER="orphaned - no maintainer"
-EMAIL="nobody@nowhere.com"
+MAINTAINER="B. Watson"
+EMAIL="yalhcru@gmail.com"
diff --git a/system/openstego/openstego.sh b/system/openstego/openstego.sh
index 395074dae3..77134c081f 100644
--- a/system/openstego/openstego.sh
+++ b/system/openstego/openstego.sh
@@ -1,2 +1,2 @@
#!/bin/sh
-exec java -Xmx512m -jar /usr/share/openstego/openstego.jar "$@"
+exec java -Xmx1024m -jar /usr/share/openstego/openstego.jar "$@"