[X2Go-Commits] [x2goclient] 35/239: macbuild.sh: add new dependency_error() helper function.

git-admin at x2go.org git-admin at x2go.org
Mon Oct 24 23:27:10 CEST 2016


This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch bugfix/osx
in repository x2goclient.

commit 0d6d016f7c9319fe4e9cb62607c3e0a8785207ff
Author: Mihai Moldovan <ionic at ionic.de>
Date:   Sun May 3 23:19:59 2015 +0200

    macbuild.sh: add new dependency_error() helper function.
---
 debian/changelog |    1 +
 macbuild.sh      |   14 ++++++++++++++
 2 files changed, 15 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 8ad7926..12f7030 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -71,6 +71,7 @@ x2goclient (4.0.5.3-0x2go1) UNRELEASED; urgency=medium
     - pulsemanager.{cpp,h}: new class for PulseAudio management.
     - x2goclient.pro{,.maemo}: reference new pulsemanager.{cpp,h} files.
     - macbuild.sh: add new MACPORTS_PREFIX detection/variable.
+    - macbuild.sh: add new dependency_error() helper function.
 
   [ Bernard Cafarelli ]
   * New upstream version (4.0.5.3):
diff --git a/macbuild.sh b/macbuild.sh
index 6e37740..83df7ea 100755
--- a/macbuild.sh
+++ b/macbuild.sh
@@ -41,6 +41,20 @@ usage() {
 	exit 2
 }
 
+dependency_error() {
+	exec >&2
+
+	typeset element="${1}"; shift
+	typeset component="${1}"; shift
+	typeset type="${1}"; shift
+
+	echo "${element} ${type} not found."
+	echo "Install ${component} -- e.g., via "port -vt install ${component}" if using MacPorts."
+	echo "If ${component} is already installed, try passing MACPORTS_PREFIX if the autodetected or default value (${MACPORTS_PREFIX}) does not match your setup."
+
+	exit 3
+}
+
 MATCH_HELP='(^((-h)|(--help))([ 	]|$))|([ 	]+((-h)|(--help))([ 	]|$))'
 [ -n "${*}" ] && [[ "${*}" =~ ${MATCH_HELP} ]] && usage
 

--
Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git


More information about the x2go-commits mailing list