LaTeXila requires GTK+-2.16.x and GtkSourceView 2.6.x.
Maybe it will work with older versions of GTK and GtkSourceView but it's not
tested.

Simple install procedure
========================

$ tar xvf latexila-0.0.1.tar.gz		# unpack the sources
$ cd latexila-0.0.1/
$ cmake .				# run the Makefile generator
$ make					# build LaTeXila
$ make translations			# build the *.mo files
[ Become root if necessary ]
$ make install				# install LaTeXila

Simple uninstall procedure
==========================

All the files installed are listed in the "install_manifest.txt" file.
So you can uninstall LaTeXila by doing this:

$ cd latexila-0.0.1/
[ Become root if necessary ]
$ xargs rm < install_manifest.txt

Configuration
=============

* Disable Native Language Support (NLS)
	run cmake with this option: -DENABLE_NLS=OFF
	then you don't need to run "make translations"

* Change the install directory
	run cmake with this option:
	-DCMAKE_INSTALL_PREFIX=/path/to/install/directory/

* Building in an other directory
	$ tar xvf latexila-0.0.1.tar.gz
	$ mkdir build_dir && cd build_dir
	$ cmake ../latexila-0.0.1/
	...
