Nautilus-2.30.1

Introduction to Nautilus

The Nautilus package contains the GNOME shell and file manager.

This package is known to build and work properly using an LFS-6.5 platform.

Package Information

Nautilus Dependencies

Required

GNOME Desktop-2.30.2, libunique-1.1.6, and shared-mime-info-0.91

Optional

DocBook-utils-0.6.14, Exempi, libexif-0.6.19, and Valgrind

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/nautilus

Installation of Nautilus

Install Nautilus by running the following commands:

./configure --prefix=$(pkg-config --variable=prefix ORBit-2.0) \
            --sysconfdir=/etc/gnome/2.30.2 \
            --libexecdir=$(pkg-config \
                --variable=prefix ORBit-2.0)/lib/nautilus &&
make

To test the results, issue: make check.

Now, as the root user:

make install &&
install -v -m755 -d $(pkg-config \
    --variable=prefix ORBit-2.0)/share/doc/nautilus-2.30.1 &&
install -v -m644 docs/*.{txt,dia,pdf,sxw,faq,html} $(pkg-config \
    --variable=prefix ORBit-2.0)/share/doc/nautilus-2.30.1

Command Explanations

--prefix=$(pkg-config --variable=prefix ORBit-2.0): Setting the prefix using this parameter instead of with $GNOME_PREFIX will ensure that the prefix is consistent with the installation environment and the package will be installed in the correct location.

--sysconfdir=/etc/gnome/2.30.2: This parameter causes the configuration files to be installed in /etc/gnome/2.30.2 instead of $GNOME_PREFIX/etc. Additionally (if applicable), the parameter ensures that the GConf-2 database is correctly updated.

Contents

Installed Programs: nautilus, nautilus-autorun-software, nautilus-connect-server, nautilus-file-management-properties, and nautilus-convert-metadata
Installed Library: libnautilus-extension.so
Installed Directories: $GNOME_PREFIX/{include/nautilus/libnautilus-extension, lib/nautilus,share/{doc/nautilus-2.30.1, gtk-doc/html/libnautilus-extension,nautilus/{icons/hicolor/{16x16/emblems, 24x24/emblems,48x48/emblems},patterns,ui},pixmaps/nautilus}}

Short Descriptions

nautilus

is the GNOME file manager.

libnautilus-extension.so

supplies the functions needed by the file manager.

Last updated on 2010-08-22 00:52:58 +0000