gajim-plural/scripts/gajim.in

35 lines
1.1 KiB
Plaintext
Raw Normal View History

2008-08-14 16:12:11 +02:00
#!/bin/sh
## scripts/gajim.in
##
## Copyright (C) 2005 Yann Le Boulanger <asterix AT lagaule.org>
## Copyright (C) 2006 Dimitur Kirov <dkirov AT gmail.com>
## Stefan Bethge <stefan AT lanpartei.de>
## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##
## Gajim 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; version 3 only.
##
## Gajim 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 Gajim. If not, see <http://www.gnu.org/licenses/>.
##
2008-08-14 21:17:53 +02:00
if test $(id -u) -eq 0; then
2005-05-09 14:23:08 +02:00
echo "You must not launch Gajim as root, it is INSECURE"
2008-08-14 21:17:53 +02:00
exit 1
fi
export datadir=@DATADIR@/gajim
PYTHON_EXEC=@PYTHON@
cd ${datadir}/src
export PYTHONPATH="$PYTHONPATH:@LIBDIR@/gajim"
2008-08-14 16:12:11 +02:00
exec ${PYTHON_EXEC} -OO gajim.py $@