The GNOME Doc Utils package is a collection of documentation utilities for the GNOME project. Notably, it contains utilities for building documentation and all auxiliary files in your source tree, and it contains the DocBook XSLT stylesheets that were once distributed with Yelp. Starting with GNOME 2.8, Yelp requires GNOME Doc Utils for the XSLT. Starting with GNOME 2.12, many of the core GNOME packages require GNOME Doc Utils.
Download (HTTP): http://ftp.gnome.org/pub/gnome/sources/gnome-doc-utils/0.6/gnome-doc-utils-0.6.1.tar.bz2
Download (FTP): ftp://ftp.gnome.org/pub/gnome/sources/gnome-doc-utils/0.6/gnome-doc-utils-0.6.1.tar.bz2
Download MD5 sum: c706b807b15e07e58561f903c0f20c26
Download size: 384 KB
Estimated disk space required: 9.0 MB
Estimated build time: less than 0.1 SBU
Python-2.4.4 and ScrollKeeper-0.3.14
The packages are listed as recommended even though GNOME Doc Utils will build fine without them. If you don't install the recommended packages (and you pass the appropriate flags to the configure command so that it will build without them), functionality will be missing that is expected later in other GNOME packages.
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/gnome-doc-utils
The instructions below are based on installing the package into a GNOME-2 environment. If, for whatever reason, you're installing this package without having ORBit2 and the core GNOME-2 libraries installed, you'll need to modify the --prefix= parameter on the configure script to point to your desired installation path (e.g., --prefix=/usr).
Install GNOME Doc Utils by running the following commands:
sed -i 's/@.*@pkgconfig/pkgconfig/' Makefile.in && ./configure --prefix=$(pkg-config --variable=prefix ORBit-2.0) \ --mandir=$(pkg-config \ --variable=prefix ORBit-2.0)/share/man && make
To test the results, issue: make check.
Now, as the root user:
make install
sed -i 's/@.*@pkgconfig/pkgconfig/' Makefile.in: If you build GNOME Doc Utils without Python, the pkg-config support files will not be installed. This command ensures that they are always installed.
--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.
--mandir=$(pkg-config --variable=prefix ORBit-2.0)/share/man: This parameter causes the man.(X) files to be installed in $GNOME_PREFIX/share/man/man(X) instead of $GNOME_PREFIX/man/man(X).
Last updated on 2007-01-18 13:38:19 -0600