mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 09:32:14 +02:00
The source is unclear which version of the license applies. Since BSD is listed, we have plenty of choice so lets pick some versions. Most people would pick BSD out of the three anyway. (From OE-Core rev: 04c2e69ffb77b43b853170c2b804eab367260063) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
56 lines
2.2 KiB
BlitzBasic
56 lines
2.2 KiB
BlitzBasic
DESCRIPTION = "Tools for the Linux Standard Wireless Extension Subsystem"
|
|
HOMEPAGE = "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html"
|
|
LICENSE = "GPLv2 & (LGPLv2.1 | MPL-1.1 | BSD)"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
|
|
file://iwconfig.c;beginline=1;endline=12;md5=cf710eb1795c376eb10ea4ff04649caf \
|
|
file://iwevent.c;beginline=59;endline=72;md5=d66a10026d4394f0a5b1c5587bce4537 \
|
|
file://sample_enc.c;beginline=1;endline=4;md5=838372be07874260b566bae2f6ed33b6"
|
|
SECTION = "base"
|
|
PE = "1"
|
|
PR = "r4"
|
|
|
|
SRC_URI = "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools.29.tar.gz \
|
|
file://remove.ldconfig.call.patch \
|
|
file://man.patch \
|
|
file://wireless-tools.if-pre-up \
|
|
file://zzz-wireless.if-pre-up \
|
|
file://avoid_strip.patch"
|
|
|
|
SRC_URI[md5sum] = "e06c222e186f7cc013fd272d023710cb"
|
|
SRC_URI[sha256sum] = "6fb80935fe208538131ce2c4178221bab1078a1656306bce8909c19887e2e5a1"
|
|
S = "${WORKDIR}/wireless_tools.29"
|
|
|
|
CFLAGS =+ "-I${S}"
|
|
EXTRA_OEMAKE = "-e 'BUILD_SHARED=y' \
|
|
'INSTALL_DIR=${D}${base_sbindir}' \
|
|
'INSTALL_LIB=${D}${libdir}' \
|
|
'INSTALL_INC=${D}${includedir}' \
|
|
'INSTALL_MAN=${D}${mandir}'"
|
|
|
|
do_compile() {
|
|
oe_runmake all libiw.a
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake PREFIX=${D} install-iwmulticall install-dynamic install-man install-hdr
|
|
install -d ${D}${sbindir}
|
|
install -m 0755 ifrename ${D}${sbindir}/ifrename
|
|
# Disabled by RP - 20/8/08 - We don't seem to need/use these
|
|
#install -d ${D}${sysconfdir}/network/if-pre-up.d
|
|
#install ${WORKDIR}/wireless-tools.if-pre-up ${D}${sysconfdir}/network/if-pre-up.d/wireless-tools
|
|
#install ${WORKDIR}/zzz-wireless.if-pre-up ${D}${sysconfdir}/network/if-pre-up.d/zzz-wireless
|
|
}
|
|
|
|
PACKAGES = "libiw-dbg ifrename-dbg ${PN}-dbg \
|
|
libiw libiw-dev libiw-doc ifrename-doc ifrename ${PN} ${PN}-doc"
|
|
|
|
FILES_libiw-dbg = "${libdir}/.debug/*.so.*"
|
|
FILES_ifrename-dbg = "${sbindir}/.debug/ifrename"
|
|
FILES_libiw = "${libdir}/*.so.*"
|
|
FILES_libiw-dev = "${libdir}/*.a ${libdir}/*.so ${includedir}"
|
|
FILES_libiw-doc = "${mandir}/man7"
|
|
FILES_ifrename = "${sbindir}/ifrename"
|
|
FILES_ifrename-doc = "${mandir}/man8/ifrename.8 ${mandir}/man5/iftab.5"
|
|
FILES_${PN} = "${bindir} ${sbindir}/iw* ${base_sbindir} ${base_bindir} ${sysconfdir}/network"
|
|
FILES_${PN}-doc = "${mandir}"
|