diff options
author | Brandon Low <lostlogic@gentoo.org> | 2003-03-13 21:40:39 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2003-03-13 21:40:39 +0000 |
commit | 2029db75e7157f5eba9404490e6f20d377ba6c1d (patch) | |
tree | 10467c8f3e35185e198fe4c61b3aeca8489bd166 /sys-apps/modutils | |
parent | removed crusty ebuilds (diff) | |
download | gentoo-2-2029db75e7157f5eba9404490e6f20d377ba6c1d.tar.gz gentoo-2-2029db75e7157f5eba9404490e6f20d377ba6c1d.tar.bz2 gentoo-2-2029db75e7157f5eba9404490e6f20d377ba6c1d.zip |
bump
Diffstat (limited to 'sys-apps/modutils')
-rw-r--r-- | sys-apps/modutils/ChangeLog | 11 | ||||
-rw-r--r-- | sys-apps/modutils/files/digest-modutils-2.4.23 | 1 | ||||
-rw-r--r-- | sys-apps/modutils/modutils-2.4.23.ebuild | 58 |
3 files changed, 67 insertions, 3 deletions
diff --git a/sys-apps/modutils/ChangeLog b/sys-apps/modutils/ChangeLog index 5f5c05c19e87..062af76be11a 100644 --- a/sys-apps/modutils/ChangeLog +++ b/sys-apps/modutils/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sys-apps/modutils # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/modutils/ChangeLog,v 1.16 2003/02/21 02:34:19 zwelch Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/modutils/ChangeLog,v 1.17 2003/03/13 21:40:39 lostlogic Exp $ + +*modutils-2.4.23 (13 Mar 2003) + + 13 Mar 2003; Brandon Low <lostlogic@gentoo.org> modutils-2.4.23.ebuild: + Version bump, should be very minor stuff, and mostly bug fixes. + +*modutils-2.4.22 (25 Nov 2002) 20 Feb 2003; Zach Welch <zwelch@gentoo.org> modutils-2.4.22.ebuild : Added arm to keywords. @@ -9,8 +16,6 @@ Patched for hppa. Added hppa to keywords. -*modutils-2.4.22 (25 Nov 2002) - 09 Jan 2002; Seemant Kulleen <seemant@gentoo.org> modutils-2.4.22.ebuild : filter-flags to remove -fPIC, which causes compilation to fail, since diff --git a/sys-apps/modutils/files/digest-modutils-2.4.23 b/sys-apps/modutils/files/digest-modutils-2.4.23 new file mode 100644 index 000000000000..ca73a5f57a87 --- /dev/null +++ b/sys-apps/modutils/files/digest-modutils-2.4.23 @@ -0,0 +1 @@ +MD5 d0c7005bf262d44d2962db51147afbeb modutils-2.4.23.tar.bz2 220218 diff --git a/sys-apps/modutils/modutils-2.4.23.ebuild b/sys-apps/modutils/modutils-2.4.23.ebuild new file mode 100644 index 000000000000..82fe34eb44b7 --- /dev/null +++ b/sys-apps/modutils/modutils-2.4.23.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2003 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.23.ebuild,v 1.1 2003/03/13 21:40:39 lostlogic Exp $ + +inherit flag-o-matic + +S="${WORKDIR}/${P}" +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 ~alpha ~hppa ~arm" +SLOT="0" +LICENSE="GPL-2" + +DEPEND="virtual/glibc" + +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 COPYING CREDITS ChangeLog NEWS README TODO +} + +pkg_postinst() { + echo + einfo "If you get problems after update related to missing" + einfo "\"keybdev\" module, please recompile your kernel." + echo +} + |