From 28aee13699ceeaf463c58c84c0531723c779d828 Mon Sep 17 00:00:00 2001 From: Dimitur Kirov Date: Wed, 11 Oct 2006 22:41:03 +0000 Subject: [PATCH] add more descriptive note for svn users about the new setup requirements --- src/common/gajim.py | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/src/common/gajim.py b/src/common/gajim.py index 54fcd3ac1..8f5a7faef 100644 --- a/src/common/gajim.py +++ b/src/common/gajim.py @@ -29,8 +29,27 @@ try: import defs except ImportError: print >> sys.stderr, '''defs.py is missing! -If you start gajim from svn, do: -$ sh autogen.sh''' + +If you start gajim from svn: + * Make sure you have GNU autotools installed. + This includes the following packages: + aclocal-1.9 + automake-1.9 + autoconf >= 2.59 + intltool-0.35 + libtool + * Run + $ sh autogen.sh + * Optionally, install gajim + $ make + $ sudo make install + +**** Note for translators **** + You can get the latest string updates, by running: + $ cd po/ + $ make update-po + +''' sys.exit(1) interface = None # The actual interface (the gtk one for the moment)