summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-02-04 00:13:06 +0000
committerMike Frysinger <vapier@gentoo.org>2005-02-04 00:13:06 +0000
commita92f2cc6c351e0df4ab0b99d8a6b5988229b6996 (patch)
tree112b5a6300d1db994e97b6951020c07a3b3a7f1d /sys-apps/modutils
parentuse /usr/lib/misc instead of /usr/libexec (diff)
downloadhistorical-a92f2cc6c351e0df4ab0b99d8a6b5988229b6996.tar.gz
historical-a92f2cc6c351e0df4ab0b99d8a6b5988229b6996.tar.bz2
historical-a92f2cc6c351e0df4ab0b99d8a6b5988229b6996.zip
arm/hppa/ia64/s390/x86 stable
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'sys-apps/modutils')
-rw-r--r--sys-apps/modutils/Manifest12
-rw-r--r--sys-apps/modutils/modutils-2.4.27.ebuild28
2 files changed, 8 insertions, 32 deletions
diff --git a/sys-apps/modutils/Manifest b/sys-apps/modutils/Manifest
index 9c0e09879470..e23e53591061 100644
--- a/sys-apps/modutils/Manifest
+++ b/sys-apps/modutils/Manifest
@@ -1,20 +1,10 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
MD5 b9204ddd853bbed679eead24d024ff05 ChangeLog 6888
MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164
MD5 480bc0e8645af663fe575dcd958150bb modutils-2.4.25.ebuild 1342
MD5 72e66328e29bdfb9aababeda22db504b modutils-2.4.26.ebuild 1356
-MD5 4661c8f353e5cae868041ff66b24d38a modutils-2.4.27.ebuild 1394
+MD5 98c8ce4e795ef3c6edfaf76e4f7a398b modutils-2.4.27.ebuild 1024
MD5 15611447c25c4be74563a4808c96aa9e files/alias.h.diff 255
MD5 d5504b6d6ed1ef697275b3a48a1e49e7 files/2.4.27-gcc34.patch 231
MD5 bd23ddb87317bad29c6d70b7f0bfcede files/digest-modutils-2.4.25 68
MD5 d836ad11c092b2c55cc5b398c2af485b files/digest-modutils-2.4.26 68
MD5 123430bcca454dfee74acef6f3525a17 files/digest-modutils-2.4.27 68
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.9.10 (GNU/Linux)
-
-iD8DBQFBy1HbroRuSHgZdywRAj5RAJ4/cGkv1XMyj6PeE4kq5QzOIj5mXACfZv3e
-0FslTa7PxzIwFaUa/VSW6pY=
-=JqUK
------END PGP SIGNATURE-----
diff --git a/sys-apps/modutils/modutils-2.4.27.ebuild b/sys-apps/modutils/modutils-2.4.27.ebuild
index dcab236ceda6..8eb6c3124b6c 100644
--- a/sys-apps/modutils/modutils-2.4.27.ebuild
+++ b/sys-apps/modutils/modutils-2.4.27.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2004 Gentoo Foundation
+# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/modutils/modutils-2.4.27.ebuild,v 1.3 2004/12/23 23:16:36 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/modutils/modutils-2.4.27.ebuild,v 1.4 2005/02/04 00:13:06 vapier Exp $
inherit eutils
@@ -10,7 +10,7 @@ SRC_URI="mirror://kernel/linux/utils/kernel/${PN}/v2.4/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~hppa -amd64 ~ia64 ~ppc64 ~s390"
+KEYWORDS="~alpha -amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh ~sparc x86"
IUSE=""
DEPEND="virtual/libc
@@ -27,30 +27,16 @@ src_unpack() {
}
src_compile() {
- local myconf=
- local mymake=
-
- # 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"
-
- [ ${ARCH} = "hppa" ] && mymake="ARCH=hppa"
-
econf \
--prefix=/ \
--disable-strip \
--enable-insmod-static \
- ${myconf} || die "./configure failed"
-
- emake ${mymake} || die "emake failed"
+ --disable-zlib \
+ || die "./configure failed"
+ emake || die "emake failed"
}
src_install() {
- local mymake=
- [ ${ARCH} = "hppa" ] && mymake="ARCH=hppa"
- einstall prefix="${D}" ${mymake} || die "make install failed"
-
+ einstall prefix="${D}" || die "make install failed"
dodoc CREDITS ChangeLog NEWS README TODO
}