Blame HACKING

Packit Service fb6fa5
If you want to hack on the GTK+ project, you'll need to have
Packit Service fb6fa5
the following packages installed:
Packit Service fb6fa5
Packit Service fb6fa5
        - GNU autoconf 2.54
Packit Service fb6fa5
        - GNU automake 1.7
Packit Service fb6fa5
        - GNU libtool 1.4
Packit Service fb6fa5
        - indent (GNU indent 1.9.1 is known good)
Packit Service fb6fa5
        - GNU gettext 10.40
Packit Service fb6fa5
Packit Service fb6fa5
These should be available by ftp from ftp.gnu.org or any of the
Packit Service fb6fa5
fine GNU mirrors.  Beta software can be found at alpha.gnu.org.
Packit Service fb6fa5
Packit Service fb6fa5
Up-to-date instructions about developing GNOME applications and libraries
Packit Service fb6fa5
can be found here:
Packit Service fb6fa5
Packit Service fb6fa5
        http://developer.gnome.org
Packit Service fb6fa5
Packit Service fb6fa5
Information about using git with GNOME can be found here:
Packit Service fb6fa5
Packit Service fb6fa5
        http://live.gnome.org/Git
Packit Service fb6fa5
Packit Service fb6fa5
In order to get GIT gtk+ installed on your system, you need to have
Packit Service fb6fa5
the most recent GIT versions of glib, pango, and atk installed as well.
Packit Service fb6fa5
The installation process of these libraries is similar to that of gtk+, but
Packit Service fb6fa5
needs to be fulfilled prior to installation of gtk+.
Packit Service fb6fa5
Packit Service fb6fa5
If at all possible, please use GIT to get the latest development version of
Packit Service fb6fa5
gtk+ and glib. You can do the following to get glib and gtk+ from GIT:
Packit Service fb6fa5
Packit Service fb6fa5
        $ git clone git://git.gnome.org/glib
Packit Service fb6fa5
        $ git clone git://git.gnome.org/pango
Packit Service fb6fa5
        $ git clone git://git.gnome.org/atk
Packit Service fb6fa5
        $ git clone git://git.gnome.org/gtk+
Packit Service fb6fa5
Packit Service fb6fa5
Note: if you plan to push changes to back to the master repository and
Packit Service fb6fa5
have a gnome account, you want to use the following instead:
Packit Service fb6fa5
Packit Service fb6fa5
        $ git clone ssh://<username>@git.gnome.org/git/gtk+
Packit Service fb6fa5
Packit Service fb6fa5
To compile the GIT version of gtk+ on your system, you will need to take
Packit Service fb6fa5
several steps to setup the tree for compilation.  You can do all these
Packit Service fb6fa5
steps at once by running:
Packit Service fb6fa5
Packit Service fb6fa5
        gtk+$ ./autogen.sh
Packit Service fb6fa5
Packit Service fb6fa5
Basically this does the following for you:
Packit Service fb6fa5
Packit Service fb6fa5
        gtk+$ aclocal; automake; autoconf
Packit Service fb6fa5
Packit Service fb6fa5
The above commands create the `configure' script.  Now you
Packit Service fb6fa5
run the `configure' script in `gtk+/' to create all Makefiles.
Packit Service fb6fa5
More information about that in `INSTALL'.
Packit Service fb6fa5
Packit Service fb6fa5
Before running `autogen.sh' or `configure', make sure you have libtool
Packit Service fb6fa5
in your path.
Packit Service fb6fa5
Packit Service fb6fa5
Note that autogen.sh runs configure for you.  If you wish to pass
Packit Service fb6fa5
options like `--prefix=/usr' to `configure' you can give those options
Packit Service fb6fa5
to `autogen.sh' and they will be passed on to `configure'.
Packit Service fb6fa5
Packit Service fb6fa5
For information about submitting patches and pushing changes
Packit Service fb6fa5
to GIT, see the `README' and `README.commits' files. In particular,
Packit Service fb6fa5
don't, under any circumstances, push anything to GIT before
Packit Service fb6fa5
reading and understanding `README.commmits'.