diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-10-02 06:13:09 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-10-02 06:13:09 +0000 |
commit | 87a85d43b840aed532edbd9e5a85ba4476254c6a (patch) | |
tree | f557fcd0565f2552b2fac468f42e53d1fbe14a16 /sys-apps/modutils | |
parent | Stable on x86; bug #105153 (diff) | |
download | gentoo-2-87a85d43b840aed532edbd9e5a85ba4476254c6a.tar.gz gentoo-2-87a85d43b840aed532edbd9e5a85ba4476254c6a.tar.bz2 gentoo-2-87a85d43b840aed532edbd9e5a85ba4476254c6a.zip |
old
Diffstat (limited to 'sys-apps/modutils')
-rw-r--r-- | sys-apps/modutils/files/2.4.27-gcc34.patch | 10 | ||||
-rw-r--r-- | sys-apps/modutils/files/alias.h.diff | 12 | ||||
-rw-r--r-- | sys-apps/modutils/files/digest-modutils-2.4.26 | 1 | ||||
-rw-r--r-- | sys-apps/modutils/modutils-2.4.26.ebuild | 54 |
4 files changed, 0 insertions, 77 deletions
diff --git a/sys-apps/modutils/files/2.4.27-gcc34.patch b/sys-apps/modutils/files/2.4.27-gcc34.patch deleted file mode 100644 index 83a27cc3ab25..000000000000 --- a/sys-apps/modutils/files/2.4.27-gcc34.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- obj/obj_ia64.c.orig 2003-03-12 22:39:45.000000000 -0500 -+++ obj/obj_ia64.c 2004-12-15 14:47:05.813475138 -0500 -@@ -127,6 +127,7 @@ - return (*(bundle + 1) >> 23) & 0x1ffffffffff; - - default: -+ ; - } - return (-1); - } diff --git a/sys-apps/modutils/files/alias.h.diff b/sys-apps/modutils/files/alias.h.diff deleted file mode 100644 index bb352e545248..000000000000 --- a/sys-apps/modutils/files/alias.h.diff +++ /dev/null @@ -1,12 +0,0 @@ ---- alias.h.orig 2003-03-24 14:45:49.000000000 -0700 -+++ alias.h 2003-03-24 14:49:12.000000000 -0700 -@@ -246,9 +246,6 @@ - */ - char *above[] = - { -- "hid keybdev mousedev", -- "usbmouse hid", -- "wacom evdev", - NULL /* marks the end of the list! */ - }; - diff --git a/sys-apps/modutils/files/digest-modutils-2.4.26 b/sys-apps/modutils/files/digest-modutils-2.4.26 deleted file mode 100644 index c138003c68c0..000000000000 --- a/sys-apps/modutils/files/digest-modutils-2.4.26 +++ /dev/null @@ -1 +0,0 @@ -MD5 704c8d2834bcaa6f31d4ad79d154157a modutils-2.4.26.tar.bz2 235135 diff --git a/sys-apps/modutils/modutils-2.4.26.ebuild b/sys-apps/modutils/modutils-2.4.26.ebuild deleted file mode 100644 index e00c1617cb17..000000000000 --- a/sys-apps/modutils/modutils-2.4.26.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# 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.26.ebuild,v 1.14 2005/02/07 18:35:55 gustavoz Exp $ - -inherit flag-o-matic eutils - -DESCRIPTION="Standard kernel module utilities" -HOMEPAGE="http://www.kernel.org/pub/linux/utils/kernel/modutils/" -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" -IUSE="" - -DEPEND="virtual/libc - !virtual/modutils" -PROVIDE="virtual/modutils" - -src_unpack() { - unpack ${A} - - EPATCH_OPTS="-d ${S}/util" \ - epatch ${FILESDIR}/alias.h.diff -} - -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" -} - -src_install() { - local mymake= - [ ${ARCH} = "hppa" ] && mymake="ARCH=hppa" - einstall prefix="${D}" ${mymake} || die "make install failed" - - dodoc CREDITS ChangeLog NEWS README TODO -} |