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 | 03d7876dad9fc1a322bb7e5dfd0a11a5e5031ad1 (patch) | |
tree | c89d9ee4c7241a12bfa5548322a6195cefc1dd05 /sys-apps | |
parent | Version bump. (diff) | |
download | historical-03d7876dad9fc1a322bb7e5dfd0a11a5e5031ad1.tar.gz historical-03d7876dad9fc1a322bb7e5dfd0a11a5e5031ad1.tar.bz2 historical-03d7876dad9fc1a322bb7e5dfd0a11a5e5031ad1.zip |
old
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/modutils/Manifest | 20 | ||||
-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 |
3 files changed, 14 insertions, 64 deletions
diff --git a/sys-apps/modutils/Manifest b/sys-apps/modutils/Manifest index 297aa899cbbd..3c3477155a33 100644 --- a/sys-apps/modutils/Manifest +++ b/sys-apps/modutils/Manifest @@ -1,10 +1,18 @@ -MD5 056015391e7b8336791ce02f7b150040 ChangeLog 7277 +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 -MD5 579d1f1568fc686511456813987a8c43 modutils-2.4.25.ebuild 1344 -MD5 f2e4385dd0e2e2bec8d1d7d34ba71502 modutils-2.4.26.ebuild 1358 MD5 37b077bd235fd4b8abf6d4d26be3a9db modutils-2.4.27.ebuild 1019 -MD5 d5504b6d6ed1ef697275b3a48a1e49e7 files/2.4.27-gcc34.patch 231 +MD5 056015391e7b8336791ce02f7b150040 ChangeLog 7277 +MD5 f2e4385dd0e2e2bec8d1d7d34ba71502 modutils-2.4.26.ebuild 1358 MD5 15611447c25c4be74563a4808c96aa9e files/alias.h.diff 255 -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 +MD5 d5504b6d6ed1ef697275b3a48a1e49e7 files/2.4.27-gcc34.patch 231 +MD5 d836ad11c092b2c55cc5b398c2af485b files/digest-modutils-2.4.26 68 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.1 (GNU/Linux) + +iD8DBQFC0fuDgIKl8Uu19MoRAtqnAJ0TBS2WaZbswP9Uk5sQXdQm7tDqJQCfSzYJ +p790RZAA4UVF52DKs3eLSSA= +=wzcw +-----END PGP SIGNATURE----- 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 -} |