diff options
-rwxr-xr-x | bin/x2go-buildallpackages | 17 | ||||
-rwxr-xr-x | bin/x2go-buildpackage | 2 | ||||
-rwxr-xr-x | bin/x2go-gitcreate | 19 | ||||
-rwxr-xr-x | bin/x2go-tarballrelease | 19 |
4 files changed, 56 insertions, 1 deletions
diff --git a/bin/x2go-buildallpackages b/bin/x2go-buildallpackages index 28e98f6..72cb635 100755 --- a/bin/x2go-buildallpackages +++ b/bin/x2go-buildallpackages @@ -1,5 +1,22 @@ #!/bin/bash +# Copyright (C) 2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +# +# Python X2go is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# Python X2go is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the +# Free Software Foundation, Inc., +# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + LIB_PACKAGES_HEULER=" nxcomp heuler master nxcompext heuler master diff --git a/bin/x2go-buildpackage b/bin/x2go-buildpackage index 19b1633..1412043 100755 --- a/bin/x2go-buildpackage +++ b/bin/x2go-buildpackage @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (C) 2010 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +# Copyright (C) 2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # This programme is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/bin/x2go-gitcreate b/bin/x2go-gitcreate index de7a7b2..37f9efa 100755 --- a/bin/x2go-gitcreate +++ b/bin/x2go-gitcreate @@ -1,5 +1,24 @@ #!/bin/bash +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +# +# Python X2go is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# Python X2go is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the +# Free Software Foundation, Inc., +# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + +# Thanks to Jonas Smedegaard <dr@jones.dk> for inspiration... + set -e for pkg in "$@"; do diff --git a/bin/x2go-tarballrelease b/bin/x2go-tarballrelease index 1f64363..d3d3d7c 100755 --- a/bin/x2go-tarballrelease +++ b/bin/x2go-tarballrelease @@ -1,5 +1,24 @@ #!/bin/sh +# Copyright (C) 2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +# +# Python X2go is free software; you can redistribute it and/or modify +# it under the tBerms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# Python X2go is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the +# Free Software Foundation, Inc., +# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + +# Thanks to Jonas Smedegaard <dr@jones.dk> for inspiration... + set -e RELEASE="$1" |