Magellan Linux

Contents of /smage/branches/alx07x-stable/core/crda/crda-3.18-r7.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 13592 - (show annotations) (download)
Fri Jul 12 12:04:47 2019 UTC (4 years, 9 months ago) by niro
File size: 1907 byte(s)
-release branches/alx07x-stable
1 # $Id$
2
3 PNAME="crda"
4 PVER="3.18"
5 PBUILD="r7"
6
7 PCAT="net-wlan"
8
9 DESCRIPTION="Central Regulatory Domain Agent for wireless networks."
10 HOMEPAGE="http://wireless.kernel.org/en/developers/Regulatory/CRDA"
11
12 DEPEND=">= dev-libs/libnl3-3.2
13 >= app-crypt/libgcrypt-1.6
14 >= net-wlan/iw-4.1
15 >= net-wlan/wireless-regdb-2015"
16
17 SDEPEND=">= dev-python/python2-m2crypto-0.34
18 >= dev-libs/libnl3-dev-3.2
19 >= app-crypt/libgcrypt-dev-1.6"
20
21 SRCFILE="${PNAME}-${PVER}.tar.xz"
22 SRCDIR="${BUILDDIR}/${PNAME}-${PVER/_pre*/}"
23
24 ALX_PKG_KEEP="usr/bin usr/sbin usr/$(mlibdir) usr/lib"
25 sminclude mbuild mtools udev alx-split
26
27 SRC_URI=(
28 https://www.kernel.org/pub/software/network/${PNAME}/${SRCFILE}
29 mirror://${PNAME}/${SRCFILE}
30 mirror://${PNAME}/${PNAME}-3.18-makefile-link-libreg.so-against-the-crypto-library.patch
31 mirror://${PNAME}/${PNAME}-3.18-makefile-don-t-run-ldconfig.patch
32 mirror://${PNAME}/${PNAME}-3.18-no-werror.patch
33 mirror://${PNAME}/set-wireless-regdom
34 )
35
36 UP2DATE="updatecmd https://www.kernel.org/pub/software/network/${PNAME}/ | highesttarball xz"
37
38 src_prepare()
39 {
40 munpack ${SRCFILE} || die
41 cd ${SRCDIR}
42
43 # makefile fixes
44 mpatch ${PNAME}-3.18-makefile-link-libreg.so-against-the-crypto-library.patch || die
45 mpatch ${PNAME}-3.18-makefile-don-t-run-ldconfig.patch || die
46 # make werror conditional
47 mpatch ${PNAME}-3.18-no-werror.patch || die
48 }
49
50 src_compile()
51 {
52 cd ${SRCDIR}
53 mmake WERROR= || die
54 }
55
56 alx_generic_src_install()
57 {
58 cd ${SRCDIR}
59
60 # the final / in SBINDIR is required or the path results in /usr/sbincrda
61 mmake DESTDIR=${BINDIR} UDEV_RULE_DIR=$(mget-udev-rules-dir) SBINDIR=/usr/sbin/ install || die
62 minstallexec -s set-wireless-regdom || die
63 # append autoloading helper to udev rule
64 MCONFIG="$(mget-udev-rules-dir)/85-regulatory.rules"
65 maddconfig 'ACTION=="add" SUBSYSTEM=="module", DEVPATH=="/module/cfg80211", RUN+="/usr/bin/set-wireless-regdom"'
66
67 minstalldocs LICENSE README || die
68 }