diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-12 16:05:50 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-12 16:05:50 +0000 |
commit | 235bad45343e9de16e43c4d0d22b9ce223ce3b45 (patch) | |
tree | e5e7f2923d838600ef5bb365ed4067c848ed7412 /sys-apps/modutils | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-235bad45343e9de16e43c4d0d22b9ce223ce3b45.tar.gz gentoo-2-235bad45343e9de16e43c4d0d22b9ce223ce3b45.tar.bz2 gentoo-2-235bad45343e9de16e43c4d0d22b9ce223ce3b45.zip |
*** empty log message ***
Diffstat (limited to 'sys-apps/modutils')
-rw-r--r-- | sys-apps/modutils/files/digest | 2 | ||||
-rw-r--r-- | sys-apps/modutils/modutils-2.3.14-r1.ebuild | 33 |
2 files changed, 34 insertions, 1 deletions
diff --git a/sys-apps/modutils/files/digest b/sys-apps/modutils/files/digest index 386a67cfb596..c7541f74d356 100644 --- a/sys-apps/modutils/files/digest +++ b/sys-apps/modutils/files/digest @@ -1 +1 @@ -MD5 6b47ca8b904f5966fd2687d8d34afe85 modutils-2.3.12.tar.gz +MD5 883d94ee3b5abed42b8a77f93c5ae128 modutils-2.3.14.tar.gz diff --git a/sys-apps/modutils/modutils-2.3.14-r1.ebuild b/sys-apps/modutils/modutils-2.3.14-r1.ebuild new file mode 100644 index 000000000000..20670c0c2a5e --- /dev/null +++ b/sys-apps/modutils/modutils-2.3.14-r1.ebuild @@ -0,0 +1,33 @@ +# 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.14-r1.ebuild,v 1.1 2000/08/12 16:02:10 achim Exp $ + +P=modutils-2.3.14 +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Standard kernel module utilities" +CATEGORY="sys-apps" +SRC_URI="ftp://ftp.ocs.com.au/pub/modutils/v2.3/${A}" + +src_compile() { + ./configure --prefix=/ --host=${CHOST} + make $MAKEOPTS "MAKE = make $MAKEOPTS" +} + +src_install() { + cd ${S} + dodir /sbin + dodir /usr/man/man1 + dodir /usr/man/man8 + dodir /usr/man/man5 + dodir /usr/man/man2 + make prefix=${D} mandir=${D}/usr/man install + prepman + strip ${D}/sbin/* + dodoc COPYING CREDITS ChangeLog NEWS README TODO +} + + + + |