Magellan Linux

Contents of /branches/magellan-next/core/iproute2/iproute2-2.6.39-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9059 - (show annotations) (download)
Tue Oct 4 14:39:37 2011 UTC (12 years, 7 months ago) by niro
File size: 1592 byte(s)
-fixed SRCFILE
1 # $Id$
2
3 PNAME="iproute2"
4 PVER="2.6.39"
5 PBUILD="r1"
6
7 PCATEGORIE="sys-apps"
8
9 DESCRIPTION="Collection of utilities for controlling TCP/IP networking and Traffic Control."
10 HOMEPAGE="http://linux-net.osdl.org/index.php/Iproute2"
11
12 # arpd needs db
13 DEPEND=">= dev-db/db-5.1
14 >= net-misc/iptables-1.4"
15
16 SDEPEND=">= virtual/kernel-headers
17 >= sys-apps/sed-4"
18
19 # get the right pver
20 if [[ ${PVER} != ${PVER%.*.*.*} ]]
21 then
22 MYPVER="${PVER%.*}-${PVER##*.}"
23 else
24 MYPVER="${PVER}"
25 fi
26
27 SRCFILE="${PNAME}-${MYPVER}.tar.gz"
28 SRCDIR="${BUILDDIR}/${PNAME}-${MYPVER}"
29
30 sminclude mbuild
31
32 SRC_URI=(
33 http://devresources.linux-foundation.org/dev/${PNAME}/download/${SRCFILE}
34 http://linux.rz.ruhr-uni-bochum.de/download/gentoo-mirror/distfiles/${SRCFILE}
35 mirror://${PNAME}/${SRCFILE}
36 mirror://${PNAME}/${PNAME}-${PVER}-xtables-api-6-fix.patch
37 )
38
39 UP2DATE="updatecmd 'http://devresources.linux-foundation.org/dev/${PNAME}/download/?C=M;O=A' | sed -e 's:-:.:g' -e 's:iproute2.:iproute2-:g' | lasttarball"
40
41 src_prepare()
42 {
43 munpack ${SRCFILE} || die
44 cd ${SRCDIR}
45
46 # fix build against newer xtables API
47 mpatch ${PNAME}-${PVER}-xtables-api-6-fix.patch || die
48
49 # fix cflags
50 sed -i "s:-O2:${CFLAGS}:" Makefile || die
51
52 # fix libdir
53 sed -i "/^LIBDIR/s:=.*:=/$(mlibdir):" Makefile || die
54 }
55
56 src_compile()
57 {
58 cd ${SRCDIR}
59 mmake IPT_LIB_DIR=$(pkg-config xtables --variable=xtlibdir) SBINDIR=/sbin || die
60 }
61
62 src_install()
63 {
64 cd ${SRCDIR}
65 make DESTDIR=${BINDIR} \
66 DOCDIR=/usr/share/doc/${PNAME}-${PVER} \
67 MANDIR=/usr/share/man \
68 SBINDIR=/sbin install || die
69 minstalldocs ABOUT-NLS COPYING README* TODO || die
70 }