summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-11-02 10:26:40 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-11-02 10:26:40 +0000
commit783d3ab89fcc1711af76e4c44f4e85f2f5cb25ce (patch)
treec7ab4257f89437c10cfd87cfb7f093cc4f8bd204 /sys-apps/modutils
parentmarked stable for x86 (diff)
downloadgentoo-2-783d3ab89fcc1711af76e4c44f4e85f2f5cb25ce.tar.gz
gentoo-2-783d3ab89fcc1711af76e4c44f4e85f2f5cb25ce.tar.bz2
gentoo-2-783d3ab89fcc1711af76e4c44f4e85f2f5cb25ce.zip
version bump
Diffstat (limited to 'sys-apps/modutils')
-rw-r--r--sys-apps/modutils/ChangeLog9
-rw-r--r--sys-apps/modutils/files/digest-modutils-2.4.201
-rw-r--r--sys-apps/modutils/modutils-2.4.20.ebuild37
3 files changed, 46 insertions, 1 deletions
diff --git a/sys-apps/modutils/ChangeLog b/sys-apps/modutils/ChangeLog
index 471f7ede8b4a..dc43f95b1626 100644
--- a/sys-apps/modutils/ChangeLog
+++ b/sys-apps/modutils/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for sys-apps/modutils
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/modutils/ChangeLog,v 1.7 2002/08/21 15:09:38 phoenix Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/modutils/ChangeLog,v 1.8 2002/11/02 10:26:40 seemant Exp $
+
+*modutils-2.4.20 (02 Nov 2002)
+
+ 02 Nov 2002; Seemant Kulleen <seemant@gentoo.org> modutils-2.4.20.ebuild
+ files/digest-modutils-2.4.20 :
+
+ Version bump thanks to Doug Goldstein <cardoe@cardoe.com>
*modutils-2.4.19 (21 Aug 2002)
diff --git a/sys-apps/modutils/files/digest-modutils-2.4.20 b/sys-apps/modutils/files/digest-modutils-2.4.20
new file mode 100644
index 000000000000..1d0ec2845db1
--- /dev/null
+++ b/sys-apps/modutils/files/digest-modutils-2.4.20
@@ -0,0 +1 @@
+MD5 f6287821194e49b77ac9c662a4f2ddd7 modutils-2.4.20.tar.bz2 217724
diff --git a/sys-apps/modutils/modutils-2.4.20.ebuild b/sys-apps/modutils/modutils-2.4.20.ebuild
new file mode 100644
index 000000000000..de14b866e7bd
--- /dev/null
+++ b/sys-apps/modutils/modutils-2.4.20.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/modutils/modutils-2.4.20.ebuild,v 1.1 2002/11/02 10:26:40 seemant Exp $
+
+S=${WORKDIR}/${P}
+SLOT="0"
+DESCRIPTION="Standard kernel module utilities"
+SRC_URI="http://www.kernel.org/pub/linux/utils/kernel/${PN}/v2.4/${P}.tar.bz2"
+HOMEPAGE="http://www.kernel.org/pub/linux/utils/kernel/modutils/"
+
+KEYWORDS="~x86 ~ppc ~sparc ~sparc64 ~alpha"
+LICENSE="GPL-2"
+DEPEND="virtual/glibc"
+
+src_compile() {
+ myconf=""
+ # see bug #3897 ... we need insmod static, as libz.so is in /usr/lib
+ #
+ # Final resolution ... dont make it link against zlib, as the static
+ # version do not want to autoload modules :(
+ myconf="${myconf} --disable-zlib"
+
+ econf \
+ --prefix=/ \
+ --disable-strip \
+ --enable-insmod-static \
+ ${myconf} || die "./configure failed"
+
+ emake || die "emake failed"
+}
+
+src_install() {
+ einstall \
+ prefix=${D} || die "make install failed"
+
+ dodoc COPYING CREDITS ChangeLog NEWS README TODO
+}