diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-11-26 12:52:15 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-11-26 12:52:15 +0000 |
commit | 53f7be32ba871ab52b46ce92c3378768c2142bf4 (patch) | |
tree | 9279c43275a9e3244ee5af78d356d513fdef4d8d /sys-apps/modutils | |
parent | *** empty log message *** (diff) | |
download | historical-53f7be32ba871ab52b46ce92c3378768c2142bf4.tar.gz historical-53f7be32ba871ab52b46ce92c3378768c2142bf4.tar.bz2 historical-53f7be32ba871ab52b46ce92c3378768c2142bf4.zip |
*** empty log message ***
Diffstat (limited to 'sys-apps/modutils')
-rw-r--r-- | sys-apps/modutils/files/digest-modutils-2.3.21 | 1 | ||||
-rw-r--r-- | sys-apps/modutils/modutils-2.3.21.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/sys-apps/modutils/files/digest-modutils-2.3.21 b/sys-apps/modutils/files/digest-modutils-2.3.21 new file mode 100644 index 000000000000..bb9862096c1e --- /dev/null +++ b/sys-apps/modutils/files/digest-modutils-2.3.21 @@ -0,0 +1 @@ +MD5 0ceccc4f1263114f9834fb56c653338f modutils-2.3.21.tar.bz2 diff --git a/sys-apps/modutils/modutils-2.3.21.ebuild b/sys-apps/modutils/modutils-2.3.21.ebuild new file mode 100644 index 000000000000..49c39bd6768a --- /dev/null +++ b/sys-apps/modutils/modutils-2.3.21.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-apps/modutils/modutils-2.3.21.ebuild,v 1.1 2000/11/26 12:52:15 achim Exp $ + +A=${P}.tar.bz2 +S=${WORKDIR}/${P} +DESCRIPTION="Standard kernel module utilities" +SRC_URI="http://www.kernel.org/pub/linux/utils/kernel/modutils/v2.3/${A} + ftp://ftp.ocs.com.au/pub/modutils/v2.3/${A}" + +src_compile() { + try ./configure --prefix=/ --host=${CHOST} + try make +} + +src_install() { + cd ${S} + dodir /sbin + dodir /usr/man/man1 + dodir /usr/man/man8 + dodir /usr/man/man5 + dodir /usr/man/man2 + try make prefix=${D} mandir=${D}/usr/man install + prepman + strip ${D}/sbin/* + dodoc COPYING CREDITS ChangeLog NEWS README TODO +} + + + + |