Changeset 1b0c2e65c9719e00c4bd748054c3b70593c8ebcd

Show
Ignore:
Timestamp:
12/17/08 19:17:04 (3 years ago)
Author:
Lincoln de Sousa <lincoln@…>
Children:
7b54f1e9f0b6bd7ef9bb2c833107eaa887fb4896
Parents:
6b2ea584fd3443503f55d42c4a67b271d6dd52ad
git-committer:
Lincoln de Sousa <lincoln@…> (12/17/08 19:17:04)
Message:

updating README file

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • README

    r6fdbe98 r1b0c2e6  
    44INTRO 
    55~~~~~ 
    6 Guake code is placed in the src directory. 
    7 We use python system to build guake modules and to generate distribution 
    8 packages, because it's easy to maintain and because we like python =D 
     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. 
    933 
    1034 
     
    1438 * pygtk2.10 (gtk.StatusIcon) 
    1539 * python-vte 
    16  * pynotify (optional) 
     40 * python-notify 
     41 * python-dbus 
    1742 
    1843To build guake, you will need the following packages too: 
     
    2449INSTALLATION 
    2550~~~~~~~~~~~~ 
    26 We are using an autotools based installation, so if you got the source of 
    27 guake from a release file, please do the following:: 
     51We are using an autotools based installation, so if you got the source 
     52of guake from a release file, please do the following:: 
    2853 
    2954    $ gunzip -c guake-x.x.x.tar.gz | tar x 
     
    3661For more install details, please read the `INSTALL` file. 
    3762 
    38  
    39 PACKAGERS 
    40 ~~~~~~~~~ 
    41 The python way to create packages have also distribution specific features, 
    42 like generate .rpm or .deb files. But if you are interested in make Guake 
    43 available in other distributions, you can ask setup.py to install in your 
    44 package build dir with the following command:: 
    45  
    46     $ python setup.py install --root=/path/to/your/package/dir 
    47  
    48  
    49 TRANSLATION 
    50 ~~~~~~~~~~~ 
    51 If you want to translate Guake to your locale, please run po-extract. That 
    52 script will generate a file called `messages.pot`. Please edit this file with 
    53 your prefered po editor (like poedit, gtranslator, etc) and please send us 
    54 your work. And do not forget to rename messages.pot to your language.po, for 
    55 example `pt_BR.po` 
    56  
    57 NOTE: To compile the .po file to .mo, type:: 
    58  
    59     $ msgfmt pt_BR.po -o po/pt/LC_MESSAGES/meuprograma.mo 
    60  
    61 # vim:set ft=rst: