I eventually got it built successfully 2 nites ago, just after my previous post. I built 2.91.8. The files config.guess and config.sub is already included in the source. Did you download from ftp.gnome.org or from some other place?
Did you try to rebuild the automake and autoconf files?
If you're interested, this is what I did to build nautilus. This was done in Maverick.
1. Install the gconf2 development libs package:
Code:
sudo apt-get install libgconf2-dev
2. Download nautilus
Code:
wget --output-document=~/Downloads/nautilus-2.91.8.tar.gz ftp.gnome.org/../pub/gnome/sources/nautilus/2.91/nautilus-2.91.8.tar.gz
3. Download glib 2.27.93
Code:
wget --output-document=~/Downloads/glib-2.9.6.tar.gz ftp.gnome.org/../pub/gnome/sources/glib/2.9/glib-2.9.6.tar.gz
4. Download GTK+-3.0
Code:
wget --output-document=~/Downloads/gtk+-2.99.3.tar.gz ftp.gnome.org/../pub/gnome/sources/gtk+/2.99/gtk+-2.99.3.tar.gz
5. Download gnome-desktop-3.0
Code:
wget --output-document=~/Downloads/gnome-desktop-2.91.6.tar.gz ftp.gnome.org/../pub/gnome/sources/gnome-desktop/2.91/gnome-desktop-2.91.6.tar.gz
6. Download gsettings-desktop-schemas:
Code:
wget --output-document=~/Downloads/gsettings-desktop-schemas-0.1.5.tar.gz ftp.gnome.org/../pub/gnome/sources/gsettings-desktop-schemas/0.1/gsettings-desktop-schemas-0.1.5.tar.gz
6. Extract archives
Code:
tar xfv ~/Downloads/nautilus-2.91.8.tar.gz &&
tar xvf ~/Downloads/glib-2.9.6.tar.gz &&
tar xvf ~/Downloads/gtk+-2.99.3.tar.gz &&
tar xvf ~/Downloads/gnome-desktop-2.91.6.tar.gz &&
tar xvf ~/Downloads/gsettings-desktop-schemas-0.1.5.tar.gz
7. Install the gettext package
Code:
sudo apt-get install gettext
8. Build Glib
Code:
cd ~/glib-2.9.6
./configure
make
sudo make install
sudo ldconfig -v
9. Install pango and gail
Code:
sudo apt-get install libpango1.0-dev libgail-dev
10. Build gtk+-3.0:
Code:
cd ~/gtk+-2.99.3
./configure
make
sudo make install
sudo ldconfig -v
11. Install the intltool package
Code:
sudo apt-get install intltool libgconf2-dev
12. Build gsettings-desktop-schemas
Code:
cd ~/gsettings-desktop-schemas-0.1.5
./configure
make
sudo make install
13. Build gnome-desktop-3.0
Code:
cd ~/gnome-desktop-2.91.6
./configure
make
sudo make install
sudo ldconfig -v
14. Install the libxml2.0 development libs
Code:
sudo apt-get install libxml2-dev
15. Build nautilus:
Code:
cd ~/nautilus-2.91.8
./configure
make
make install
sudo ldconfig -v
Notice I've built everything to the /usr/local directory. When I tried building to the /usr/ directory there were conflicts between the old and the new packages. I have not tried to sorting these out to build to the /usr/ directory. If you do please let me kmow.
I've tried this just as a learning exercise for myself.
Bookmarks