diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-11-08 10:00:20 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-11-08 10:00:20 +0000 |
commit | 88e22fbf75d3553726246f0a3344c75635ecdb4a (patch) | |
tree | 173a5c5a71a580bde31e5b76482789fcb1bd9d07 | |
parent | 0373f2ad40ee5746c3035acb43e6c235c19d1bfd (diff) |
change section. I'd like to keep userland tools which are strongly tied to a certain kernel or kernel module under SECTION kernel/userland
BKrev: 418f43b4PtLFH6XHN5ZgmFz4pjyqzw
-rw-r--r-- | hostap/hostap-wpa-supplicant_0.2.5.oe | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/hostap/hostap-wpa-supplicant_0.2.5.oe b/hostap/hostap-wpa-supplicant_0.2.5.oe index e69de29bb2..e80dc56a2a 100644 --- a/hostap/hostap-wpa-supplicant_0.2.5.oe +++ b/hostap/hostap-wpa-supplicant_0.2.5.oe @@ -0,0 +1,32 @@ +DESCRIPTION = "User space helper for WPA and WPA2 client operations. \ +The Supplicant is used in WPA/WPA2 key handshakes to authenticate \ +with the AP and to generate dynamic encryption keys (TKIP or CCMP)." +SECTION = "kernel/userland" +PRIORITY = "optional" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" +LICENSE = "GPL" +DEPENDS = "openssl" +RDEPENDS = "hostap-modules (${PV}) hostap-utils (${PV}) hostap-daemon (${PV})" +PR = "r1" + +SRC_URI = "http://hostap.epitest.fi/releases/wpa_supplicant-${PV}.tar.gz \ + file://wpa-defconfig \ + file://wpa_supplicant_default.conf" + +S = "${WORKDIR}/wpa_supplicant-${PV}" + +EXTRA_OEMAKE="LIBS='-L${STAGING_LIBDIR} -lssl -lcrypto' LIBS_p='-L${STAGING_LIBDIR} -lssl -lcrypto'" + +do_configure() { + install -m 0644 ${WORKDIR}/wpa-defconfig .config +} + +do_install() { + install -d ${D}/${sysconfdir} ${D}/${bindir} + install -m 0644 wpa_supplicant.conf ${D}/${sysconfdir}/wpa_supplicant.conf.sample + install -m 0644 ../wpa_supplicant_default.conf ${D}/${sysconfdir}/wpa_supplicant.conf + install -m 0755 wpa_passphrase ${D}/${bindir} + install -m 0755 wpa_cli ${D}/${bindir} + install -m 0755 wpa_supplicant ${D}/${bindir} +} + |