Drop-down terminal for GNOME
Go to file
2008-12-16 09:45:34 -02:00
data Removing references of already deleted images tab{down,up}.svg 2008-12-16 09:45:34 -02:00
debian Inserting the debian structure 2008-07-22 23:54:16 -03:00
m4 updates from the autotools stuff 2008-12-11 15:08:59 -02:00
po Little semantic portuguese error 2008-08-09 01:41:44 -03:00
src Making the popup notification be shown in the end of 2008-12-16 09:32:57 -02:00
.gitignore adding the .gitignore file 2008-12-11 15:31:20 -02:00
AUTHORS Fixing file permissions (chmod -x) 2008-04-21 21:48:27 -03:00
autogen.sh 2007-08-01 02:35:20 +00:00
ChangeLog Fixing dual head monitors bug (closes #68) 2008-11-25 21:52:03 -02:00
configure.ac Little semantic portuguese error 2008-08-09 01:41:44 -03:00
COPYING Fixing file permissions (chmod -x) 2008-04-21 21:48:27 -03:00
INSTALL updating autotools updates 2008-06-03 00:05:11 -03:00
Makefile.am removing entries that were breaking make dist rule 2008-06-15 22:10:34 -03:00
NEWS Looking for all python interpreters available instead 2008-07-17 15:50:02 -03:00
po-extract Fixing file permissions (chmod -x) 2008-04-21 21:48:27 -03:00
README adding pygtk-dev as a dependency in README file 2008-06-22 15:22:35 -03:00
TODO Setting a new version, TODO modified 2008-08-07 14:58:10 -03:00

Guake README file
=================

INTRO
~~~~~
Guake code is placed in the src directory.
We use python system to build guake modules and to generate distribution
packages, because it's easy to maintain and because we like python =D


DEPENDENCIES
~~~~~~~~~~~~
 * Python2.4+
 * pygtk2.10 (gtk.StatusIcon)
 * python-vte
 * pynotify (optional)

To build guake, you will need the following packages too:
 * python-dev
 * gtk+-2.0-dev
 * pygtk-dev
 * gconf2-dev (to use some autoconf stuff)

INSTALLATION
~~~~~~~~~~~~
We are using an autotools based installation, so if you got the source of
guake from a release file, please do the following::

    $ gunzip -c guake-x.x.x.tar.gz | tar x
    $ cd guake-x.x.x
    $ ./configure && make
    $ su
    (give the root password here!)
    # make install

For more install details, please read the `INSTALL` file.


PACKAGERS
~~~~~~~~~
The python way to create packages have also distribution specific features,
like generate .rpm or .deb files. But if you are interested in make Guake
available in other distributions, you can ask setup.py to install in your
package build dir with the following command::

    $ python setup.py install --root=/path/to/your/package/dir


TRANSLATION
~~~~~~~~~~~
If you want to translate Guake to your locale, please run po-extract. That
script will generate a file called `messages.pot`. Please edit this file with
your prefered po editor (like poedit, gtranslator, etc) and please send us
your work. And do not forget to rename messages.pot to your language.po, for
example `pt_BR.po`

NOTE: To compile the .po file to .mo, type::

    $ msgfmt pt_BR.po -o po/pt/LC_MESSAGES/meuprograma.mo

# vim:set ft=rst: