root/README

Revision d1079afe713fd016ce1b98e23157098bb026c8fe, 2.3 KB (checked in by Lincoln de Sousa <lincoln@…>, 2 years ago)

Adding some help to install gconf schema file

  • Property mode set to 100644
Line 
1Guake README file
2=================
3
4INTRO
5~~~~~
6
7Guake is a dropdown terminal made for the GNOME desktop
8environment. Its style of window is based on an fps games, and one of
9its goals is be easy to reach.
10
11Guake is written mostly in python and has a little piece in C (global
12hotkey stuff). The code is placed in the src directory. Files and
13images are in the data directory. If you're looking for translation
14stuff, you should take a look at the po directory.
15
16LICENSE
17~~~~~~~
18
19This program is free software; you can redistribute it and/or modify
20it under the terms of the GNU General Public License as published by
21the Free Software Foundation; either version 2 of the License, or (at
22your option) any later version.
23
24This program is distributed in the hope that it will be useful, but
25WITHOUT ANY WARRANTY; without even the implied warranty of
26MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
27General Public License for more details.
28
29You should have received a copy of the GNU General Public License
30along with this program; if not, write to the Free Software
31Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
3202110-1301, USA.
33
34
35DEPENDENCIES
36~~~~~~~~~~~~
37 * Python2.4+
38 * pygtk2.10 (gtk.StatusIcon)
39 * python-vte
40 * python-notify
41 * python-dbus
42 * python-gconf
43
44To build guake, you will need the following packages too:
45 * python-dev
46 * gtk+-2.0-dev
47 * pygtk-dev
48 * gconf2-dev (to use some autoconf stuff)
49
50INSTALLATION
51~~~~~~~~~~~~
52We are using an autotools based installation, so if you got the source
53of guake from a release file, please do the following::
54
55    $ gunzip -c guake-x.x.x.tar.gz | tar x
56    $ cd guake-x.x.x
57    $ ./configure && make
58    $ su
59    (give the root password here!)
60    # make install
61
62If you receive a message asking you if you have installed
63guake.schemas properly when launching guake, it means that your
64default sysconfdir is different from the one choosen by autotools. To
65fix that, you probably have to append the param `--sysconfdir=/etc' to
66your `./configure' call, like this::
67
68    $ ./configure --sysconfidir=/etc && make
69
70If it is not enought you can call, you can install the gconf schemas
71file by hand doing the following::
72
73    # gconftool-2 --makefile-install-rule data/guake.schemas
74
75For more install details, please read the `INSTALL` file.
76
Note: See TracBrowser for help on using the browser.