diff options
author | Michael Januszewski <spock@gentoo.org> | 2004-07-11 19:05:59 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2004-07-11 19:05:59 +0000 |
commit | 46324fdc31c353be50786bfa0e8d99c3a64761ef (patch) | |
tree | de825c80bb7971d034858df2acdce17d3dfaeabb /eclass | |
parent | versionbump (diff) | |
download | historical-46324fdc31c353be50786bfa0e8d99c3a64761ef.tar.gz historical-46324fdc31c353be50786bfa0e8d99c3a64761ef.tar.bz2 historical-46324fdc31c353be50786bfa0e8d99c3a64761ef.zip |
Fixed a typo, added dependency on docbook-sgml-utils if 'doc' is in USE. Closes bug #56519.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kernel-2.eclass | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index 8c3be4fd4e51..a3d617bd471a 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.38 2004/07/08 02:03:41 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.39 2004/07/11 19:05:59 spock Exp $ # kernel.eclass rewrite for a clean base regarding the 2.6 series of kernel # with back-compatibility for 2.4 @@ -92,7 +92,8 @@ if [ "${ETYPE}" == "sources" ] then #console-tools is needed to solve the loadkeys fiasco; binutils version needed to avoid Athlon/PIII/SSE assembler bugs. DEPEND="!build? ( sys-apps/sed - >=sys-devel/binutils-2.11.90.0.31 )" + >=sys-devel/binutils-2.11.90.0.31 ) + doc? ( app-text/docbook-sgml-utils )" RDEPEND="${DEPEND} !build? ( >=sys-libs/ncurses-5.2 @@ -251,7 +252,7 @@ install_sources() { install_manpages() { local MY_ARCH - ebegin "Installing mapages" + ebegin "Installing manpages" MY_ARCH=${ARCH} unset ARCH sed -i -e "s#/usr/local/man#${D}/usr/man#g" scripts/makeman |