Magellan Linux

Contents of /trunk/core/module-init-tools/module-init-tools-3.7-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1121 - (show annotations) (download)
Wed Apr 22 20:00:37 2009 UTC (15 years ago) by niro
File size: 2089 byte(s)
auto added: ver bump to 3.7-r1
1 # $Id$
2
3 PNAME="module-init-tools"
4 PVER="3.7"
5 PBUILD="r1"
6
7 PCATEGORIE="sys-apps"
8 STATE="unstable"
9
10 DESCRIPTION="Kernel module utilities for 2.6x kernel series."
11 HOMEPAGE="http://www.kerneltools.org/"
12
13 DEPEND=">= virtual/glibc
14 >= sys-libs/zlib-1.2.3
15 >= sys-apps/debianutils-2.30"
16
17 SRCFILE="${PNAME}-${PVER}.tar.bz2"
18 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
19
20 sminclude mtools
21
22 SRC_URI=(
23 http://www.kernel.org/pub/linux/utils/kernel/${PNAME}/${SRCFILE}
24 http://www.kernel.org/pub/linux/kernel/people/jcm/${PNAME}/${SRCFILE}
25 mirror://${PNAME}/${SRCFILE}
26 mirror://${PNAME}/${PNAME}-0.9.15-legacy-modext-support.patch
27 mirror://${PNAME}/${PNAME}-3.1-generate-modprobe-assume-kernel.patch
28 mirror://${PNAME}/${PNAME}-3.1-abort-on-modprobe-failure.patch
29 mirror://${PNAME}/${PNAME}-3.2.2-handle-dupliate-aliases.patch
30 )
31 # note: we dropped buildin modutils, *no* kernel-2.4 support anymore!
32
33 UP2DATE="updatecmd http://www.kernel.org/pub/linux/utils/kernel/${PNAME} | lasttarball"
34
35 src_prepare()
36 {
37 munpack ${SRCFILE} || die
38 cd ${SRCDIR}
39
40 # support legacy .o modules
41 mpatch ${PNAME}-0.9.15-legacy-modext-support.patch || die
42 mpatch ${PNAME}-3.1-generate-modprobe-assume-kernel.patch || die
43 mpatch ${PNAME}-3.1-abort-on-modprobe-failure.patch || die
44
45 # fixes an endless loop
46 mpatch ${PNAME}-3.2.2-handle-dupliate-aliases.patch || die
47
48 # from gentoo:
49 # make sure we link dynamically with zlib; our zlib.so is in /lib vs
50 # /usr/lib so it's safe to link with. fixes ugly textrels as well.
51 sed -i 's:-Wl,-Bstatic -lz -Wl,-Bdynamic:-lz:' configure || die
52
53 [ -e ${SRCDIR}/missing ] && rm missing || die
54
55 export WANT_AUTOMAKE=1.10
56 automake --add-missing || die
57
58 # do not regenerate man-pages (needs docbook2man)
59 touch *.5 *.8 || die
60 }
61
62 src_compile()
63 {
64 cd ${SRCDIR}
65 mconfigure --prefix=/ --enable-zlib || die
66 mmake || die
67 }
68
69 src_install()
70 {
71 cd ${SRCDIR}
72 mmake DESTDIR=${BINDIR} install || die
73
74 # installs compat symlinks
75 mlink ../bin/lsmod /sbin/lsmod || die
76 }
77
78 postinstall()
79 {
80 if [ -x /sbin/modules-update ]
81 then
82 echo "Updating module dependencies"
83 /sbin/modules-update
84 fi
85 }

Properties

Name Value
svn:keywords Id