#!/bin/bash # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /home/cvsroot/gentoo-src/portage/bin/dodoc,v 1.5 2003/04/27 21:16:47 carpaski Exp $ if [ $# -lt 1 ] ; then echo "${0}: at least one argument needed" exit 1 fi DOCTREEBASE="/usr/share/doc/${PF}" env \ INSOPTIONS="-m0644" \ INSDESTTREE="${DOCTREEBASE}/${DOCDESTTREE}" \ doins "$@" \ || exit $? prepalldocs