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

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

commit 96409f631d8b7908831034c77960b8fe99da3198
Author: Mihai Moldovan <io...@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 203ea5a..2b75346 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -67,6 +67,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.
 
  -- X2Go Release Manager <git-ad...@x2go.org>  Mon, 19 Sep 2016 09:07:07 +0200
 
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
_______________________________________________
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits

Reply via email to