summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schlemmer <azarah@gentoo.org>2001-09-30 20:44:20 +0000
committerMartin Schlemmer <azarah@gentoo.org>2001-09-30 20:44:20 +0000
commit0df951a8e3685c45ef8ac73c2e02d38b7b7d728f (patch)
treedcf1af86c9055cb8fa2f9abcd152a3a929e05012 /sys-apps
parentRemoved the ugly wrapper mplayer used, thanks goes to Mog :) (diff)
downloadgentoo-2-0df951a8e3685c45ef8ac73c2e02d38b7b7d728f.tar.gz
gentoo-2-0df951a8e3685c45ef8ac73c2e02d38b7b7d728f.tar.bz2
gentoo-2-0df951a8e3685c45ef8ac73c2e02d38b7b7d728f.zip
added modutils-2.4.9 to try and fix a problem for gugi
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/modutils/files/digest-modutils-2.4.91
-rw-r--r--sys-apps/modutils/modutils-2.4.9.ebuild25
2 files changed, 26 insertions, 0 deletions
diff --git a/sys-apps/modutils/files/digest-modutils-2.4.9 b/sys-apps/modutils/files/digest-modutils-2.4.9
new file mode 100644
index 000000000000..4e5a94356736
--- /dev/null
+++ b/sys-apps/modutils/files/digest-modutils-2.4.9
@@ -0,0 +1 @@
+MD5 e0278084b5e4984253b1056e80ad9035 modutils-2.4.9.tar.bz2
diff --git a/sys-apps/modutils/modutils-2.4.9.ebuild b/sys-apps/modutils/modutils-2.4.9.ebuild
new file mode 100644
index 000000000000..39b631e2671f
--- /dev/null
+++ b/sys-apps/modutils/modutils-2.4.9.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2001 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Maintainer: System Team <system@gentoo.org>
+# Author: Daniel Robbins <drobbins@gentoo.org>
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/modutils/modutils-2.4.9.ebuild,v 1.1 2001/09/30 20:44:20 azarah Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="Standard kernel module utilities"
+SRC_URI="http://www.kernel.org/pub/linux/utils/kernel/modutils/v2.4/${P}.tar.bz2"
+
+DEPEND="virtual/glibc"
+
+src_compile() {
+ ./configure --prefix=/ --mandir=/usr/share/man --host=${CHOST} --disable-strip || die
+ emake || die
+}
+
+src_install() {
+ make prefix=${D} mandir=${D}/usr/share/man install || die
+ dodoc COPYING CREDITS ChangeLog NEWS README TODO
+}
+
+
+
+