# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: Tony Murray # $Header:$ S="${WORKDIR}/${P}" DESCRIPTION="Kernel module tools for the development kernel" SRC_URI="http://www.kernel.org/pub/linux/kernel/people/rusty/modules/${P}.tar.bz2" HOMEPAGE="http://www.kernel.org/pub/linux/kernel/people/rusty/modules" LICENSE="GPL-2" DEPEND="virtual/glibc" src_compile() { ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man || die "./configure failed" emake || die } src_install () { make \ prefix=${D} \ mandir=${D}/usr/share/man \ install || die # Install documentation. dodoc CHANGES }