mirror of
git://git.yoctoproject.org/poky
synced 2026-09-06 09:26:54 +00:00
A lot of our recipes had short one-line DESCRIPTION values and no SUMMARY value set. In this case it's much better to just set SUMMARY since DESCRIPTION is defaulted from SUMMARY anyway and then the SUMMARY is at least useful. I also took the opportunity to fix up a lot of the new SUMMARY values, making them concisely explain the function of the recipe / package where possible. (From OE-Core rev: b8feee3cf21f70ba4ec3b822d2f596d4fc02a292) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
57 lines
2.3 KiB
BlitzBasic
57 lines
2.3 KiB
BlitzBasic
SUMMARY = "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 \
|
|
file://ldflags.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}"
|