56. man-db

wget http://www.gnuwakes.org/depot/1.0/main/sources/man-db-2.7.1.tar.xz

tar -xf man-db-2.7.1.tar.xz

SOURCES_DIR=$PWD/man-db-2.7.1
INSTALL_DIR=$PWD/man-db-2.7.1-install
BUILD_DIR=$PWD/man-db-2.7.1-build

mkdir $INSTALL_DIR $BUILD_DIR
cd $BUILD_DIR

$SOURCES_DIR/configure                 \
  --prefix=/usr                        \
  --docdir=/usr/share/doc/man-db-2.7.1 \
  --sysconfdir=/etc                    \
  --disable-setuid                     \
  --with-browser=/usr/bin/lynx         \
  --with-vgrind=/usr/bin/vgrind        \
  --with-grap=/usr/bin/grap && \
  make && make DESTDIR=$INSTALL_DIR install

# confdir3 bug
mv confdir3 /tmp/$$; rm -rf /tmp/$$

sed -i "s:man root:root root:g" $INSTALL_DIR/usr/lib/tmpfiles.d/man-db.conf