home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2002 April / pcpro0402.iso / essentials / graphics / Gimp / gimp-src-20001226.exe / src / gimp / HACKING < prev    next >
Encoding:
Text File  |  1999-01-20  |  1.8 KB  |  50 lines

  1. If you want to hack on the GIMP project, it will make you life easier
  2. to have the following packages installed:
  3.  
  4.     - GNU autoconf 2.13
  5.     - GNU automake 1.4
  6.     - GNU libtool 1.2d
  7.     - GNU gettext 10.35
  8.         Available in ftp://alpha.gnu.org/gnu
  9.  
  10.  
  11. These should be available by ftp from prep.ai.mit.edu or any of the
  12. fine GNU mirrors.  Beta software can be found at alpha.gnu.org.
  13.  
  14. If you are accessing gimp via CVS, then you will need to take several
  15. steps to get it to compile.  You can do all these steps at once
  16. by running:
  17.  
  18.         cvsroot/gimp# ./autogen.sh
  19.  
  20. Basically this does the following for you:
  21.  
  22.         cvsroot/gimp# aclocal; automake; autoconf
  23.  
  24.         The above commands create the "configure" script.  Now you
  25.         can run the configure script in cvsroot/gimp to create all
  26.         the Makefiles.
  27.  
  28. Before running autogen.sh or configure, make sure you have libtool
  29. in your path. Also make sure gtk.m4 is in the same --prefix relative
  30. to your automake installation.
  31.  
  32. Note that autogen.sh runs configure for you.  If you wish to pass
  33. options like --prefix=/usr to configure you can give those options
  34. to autogen.sh and they will be passed on to configure.
  35.  
  36. If at all possible, please use CVS to get the latest development version of
  37. gimp, as well as the CVS version of gtk+.  You can do the following to get
  38. gimp and gtk+ from cvs:
  39.  
  40.    $ export CVSROOT=':pserver:anonymous@anoncvs.gimp.org:/cvs/gnome'
  41.    $ cvs login
  42.      (there is no password, just hit return)
  43.    $ cvs -z3 checkout gtk+ gimp
  44.  
  45. Please submit patches to the gimp-developer@scam.xcf.berkeley.edu mailing
  46. list.  All kinds of contributions are accepted.  Patches that you wish to go
  47. into the distribution should also be uploaded to ftp://ftp.gimp.org/incoming.
  48. Follow the rules there for naming your patches.
  49.  
  50.