diff options
author | Koen Kooi <koen@openembedded.org> | 2008-09-22 14:51:03 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-09-22 14:51:03 +0000 |
commit | f7cd1c3c4009071cf21bf3c9a016bfe62299e49d (patch) | |
tree | f0df25124836b396d4ff34daff048d2df207973d | |
parent | 5553eb15d63ea41aae25786c12913ccd1a0098b6 (diff) |
wpa-gui: update to 0.6.4, which is using qt4 now
* People who want it can add an wpa-gui-qte recipe by changing the inherit qt4x11 to qtopia
-rw-r--r-- | packages/wpa-supplicant/wpa-gui_0.6.4.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/wpa-supplicant/wpa-gui_0.6.4.bb b/packages/wpa-supplicant/wpa-gui_0.6.4.bb new file mode 100644 index 0000000000..6f63958288 --- /dev/null +++ b/packages/wpa-supplicant/wpa-gui_0.6.4.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "Qt interface for choosing which configured network to connect \ +to. It also provides a method for browsing 802.11 SSID scan results, an event \ +history log of messages generated by wpa_supplicant, and a method to add or \ +edit wpa_supplicant networks." +SECTION = "network" +LICENSE = "GPL BSD" +HOMEPAGE = "http://hostap.epitest.fi/wpa_supplicant/" +RDEPENDS = "wpa-supplicant" + +SRC_URI = "http://hostap.epitest.fi/releases/wpa_supplicant-${PV}.tar.gz " + +S = "${WORKDIR}/wpa_supplicant-${PV}/wpa_supplicant/wpa_gui" + +inherit qt4x11 + +EXTRA_QMAKEVARS_POST += "CONFIG+=thread" + +do_install () { + install -d ${D}${sbindir} + install -m 755 wpa_gui ${D}${sbindir} +} |