diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-11 04:53:14 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-11 04:53:14 +0000 |
commit | bac21abb0fb560b732cd37a0501028e3e4e7da05 (patch) | |
tree | 4e24796d3e47d12a6ed537b579aa962ff4d9342e | |
parent | Version bump. (diff) | |
download | gentoo-2-bac21abb0fb560b732cd37a0501028e3e4e7da05.tar.gz gentoo-2-bac21abb0fb560b732cd37a0501028e3e4e7da05.tar.bz2 gentoo-2-bac21abb0fb560b732cd37a0501028e3e4e7da05.zip |
old
(Portage version: 2.0.51.22-r1)
-rw-r--r-- | sys-apps/modutils/files/digest-modutils-2.4.25 | 1 | ||||
-rw-r--r-- | sys-apps/modutils/modutils-2.4.25.ebuild | 57 |
2 files changed, 0 insertions, 58 deletions
diff --git a/sys-apps/modutils/files/digest-modutils-2.4.25 b/sys-apps/modutils/files/digest-modutils-2.4.25 deleted file mode 100644 index 89360fba8ba8..000000000000 --- a/sys-apps/modutils/files/digest-modutils-2.4.25 +++ /dev/null @@ -1 +0,0 @@ -MD5 2c0cca3ef6330a187c6ef4fe41ecaa4d modutils-2.4.25.tar.bz2 220530 diff --git a/sys-apps/modutils/modutils-2.4.25.ebuild b/sys-apps/modutils/modutils-2.4.25.ebuild deleted file mode 100644 index beb90e768523..000000000000 --- a/sys-apps/modutils/modutils-2.4.25.ebuild +++ /dev/null @@ -1,57 +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.25.ebuild,v 1.26 2005/02/07 18:35:55 gustavoz Exp $ - -inherit flag-o-matic - -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 -amd64 ppc sparc alpha hppa mips ia64" -IUSE="" - -DEPEND="virtual/libc - !virtual/modutils" -PROVIDE="virtual/modutils" - -src_unpack() { - unpack ${A} - cd ${S}/util - cat ${FILESDIR}/alias.h.diff | patch -p0 || die -} - -src_compile() { - filter-flags -fPIC - - 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" - if [ ${ARCH} = "hppa" ] - then - mymake="ARCH=hppa" - fi - - emake ${mymake} || die "emake failed" -} - -src_install() { - if [ ${ARCH} = "hppa" ] - then - mymake="ARCH=hppa" - fi - einstall prefix="${D}" ${mymake} || die "make install failed" - - dodoc CREDITS ChangeLog NEWS README TODO -} |