From 3cf7c3ef441822c889356fd1812ebf2944a59851 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 25 Aug 2020 10:45:55 +0100 Subject: gentoo resync : 25.08.2020 --- media-tv/tvbrowser-bin/files/tvbrowser | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 media-tv/tvbrowser-bin/files/tvbrowser (limited to 'media-tv/tvbrowser-bin/files') diff --git a/media-tv/tvbrowser-bin/files/tvbrowser b/media-tv/tvbrowser-bin/files/tvbrowser new file mode 100644 index 000000000000..5222bd3b8147 --- /dev/null +++ b/media-tv/tvbrowser-bin/files/tvbrowser @@ -0,0 +1,28 @@ +#!/bin/bash + +# These variables are induced by the ebuild during the build process +P= +JAVA_SLOT= + +POSSIBLE_JAVA_PROGRAM_DIRS=( + /usr/lib*/openjdk-${JAVA_SLOT} + /opt/openjdk-bin-${JAVA_SLOT} + /opt/openjdk-jre-bin-${JAVA_SLOT} +) + +for POSSIBLE_DIR in ${POSSIBLE_JAVA_PROGRAM_DIRS[@]}; do + if [[ -x ${POSSIBLE_DIR}/bin/java ]]; then + export JAVA_PROGRAM_DIR="${POSSIBLE_DIR}/bin/" + break + fi +done + +if [ -z "$JAVA_PROGRAM_DIR" ]; then + echo "Could not find a suitable Java ${JAVA_SLOT} installation!" + exit 1 +fi + +cd "/opt/${P}" +echo ${JAVA_PROGRAM_DIR}java -Xms16m -Xmx1G --module-path="lib:tvbrowser.jar" -Djava.library.path="./" -splash:imgs/splash.png -Dpropertiesfile=linux.properties -m tvbrowser/tvbrowser.TVBrowser "$@" +${JAVA_PROGRAM_DIR}java -Xms16m -Xmx1G --module-path="lib:tvbrowser.jar" -Djava.library.path="./" -splash:imgs/splash.png -Dpropertiesfile=linux.properties -m tvbrowser/tvbrowser.TVBrowser "$@" + -- cgit v1.2.3