Magellan Linux

Contents of /trunk/core/bridge-utils/bridge-utils-1.7.1-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 33521 - (show annotations) (download)
Fri Jul 28 10:10:47 2023 UTC (9 months, 2 weeks ago) by niro
File size: 893 byte(s)
-ver bump to 1.7.1-r1
1 # $Id$
2
3 PNAME="bridge-utils"
4 PVER="1.7.1"
5 PBUILD="r1"
6
7 PCAT="net-misc"
8
9 DESCRIPTION="Tools for configuring the Linux kernel 802.1d Ethernet Bridge."
10 HOMEPAGE="http://linux-net.osdl.org/index.php/Bridge"
11
12 DEPEND=">= virtual/glibc"
13 SDEPEND=">= virtual/kernel-headers
14 >= sys-dev/autoconf-4
15 >= sys-dev/automake-3"
16
17 SRCFILE="${PNAME}-${PVER}.tar.xz"
18 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
19
20 sminclude mbuild
21 msetfeature "!check"
22
23 SRC_URI=(
24 sourceforge://bridge/${SRCFILE}
25 https://mirrors.edge.kernel.org/pub/linux/utils/net/${PNAME}/${SRCFILE}
26 mirror://${PNAME}/${SRCFILE}
27 )
28
29 UP2DATE="updatecmd https://mirrors.edge.kernel.org/pub/linux/utils/net/${PNAME}/ | highesttarball xz"
30
31 src_prepare()
32 {
33 munpack ${SRCFILE} || die
34 cd ${SRCDIR}
35
36 # create missing configure and co
37 mautoreconf || die
38 }
39
40 src_compile()
41 {
42 cd ${SRCDIR}
43
44 mconfigure --with-linux-headers=/usr/include || die
45 mmake || die
46 }