frklin pisze:To wydanie ma status Development Release - więc nie ma go w repo...
mgilowski - może byś napisał jakie błędy Ci wywala?
Dokładnie tak jak napisałeś frklin. Mi się już udało, mój błąd rozwiązała instalacja
babl i gegl komendą
Kod: Zaznacz cały
make -j2 // kompilacja pod procesor dwurdzeniowy
zamieszczam krótką instrukcje skompilowania nowego gimpa. Może ktoś przetłumaczy...
1. Install the packages needed to compile programs:
* sudo apt-get install build-essential subversion libtool ruby
2. Install gimp dependencies:
* sudo apt-get build-dep gimp
3. Install latest BABL and GEGL libs from source (these libs were not installed in step 2 as the gimp package in the repo is not depending on them)
* svn co
http://svn.gnome.org/svn/babl/trunk/ babl && svn co
http://svn.gnome.org/svn/gegl/trunk/ gegl
3.1 Install BABL:
* cd babl
* ./autogen.sh --prefix=/opt/gimp-2.5
* make (or "make -j 2" for multiple cores)
* sudo make install
* cd ..
3.2 Install GEGL:
* export PKG_CONFIG_PATH=/opt/gimp-2.5/lib/pkgconfig
* cd gegl
* ./autogen.sh --prefix=/opt/gimp-2.5
* make (or "make -j 2" for multiple cores)
* sudo make install
* cd ..
4. Make binaries, includes, libraries in /opt/gimp-2.5 available for use:
* export PATH=/opt/gimp-2.5/bin:$PATH && export LD_LIBRARY_PATH=/opt/gimp-2.5/lib && export PKG_CONFIG_PATH=/opt/gimp-2.5/lib/pkgconfig
5. Grab GIMP 2.5 tarball.
* wget
ftp://ftp.gimp.org/pub/gimp/v2.5/gimp-2.5.0.tar.bz2
6. Extract and install latest GIMP:
* tar jxvf gimp-2.5.0.tar.bz2
* cd gimp-2.5.0
* ./configure --prefix=/opt/gimp-2.5
* make (or "make -j 2" for multiple cores)
* sudo make install
7. Enjoy your GIMP by running:
* /opt/gimp-2.5/bin/gimp-2.5