Files
haikuports/net-wireless/wpa_supplicant/wpa_supplicant-2.0.recipe
Jerome Duval fc0936b040 Bump revisions for x86_64 rebuild after time_t change.
* a few apps needed build fix for time_t.
* disable compatibility packages for x86_64.
2017-06-27 15:46:25 +02:00

51 lines
1.3 KiB
Bash

SUMMARY="A WPA Supplicant with support for WPA and WPA2"
DESCRIPTION="
wpa_supplicant is a WPA Supplicant for Linux, BSD, Mac OS X, and Windows with \
support for WPA and WPA2 (IEEE 802.11i / RSN). It is suitable for both \
desktop/laptop computers and embedded systems. Supplicant is the IEEE \
802.1X/WPA component that is used in the client stations. It implements key \
negotiation with a WPA Authenticator and it controls the roaming and IEEE \
802.11 authentication/association of the wlan driver."
HOMEPAGE="http://hostap.epitest.fi/wpa_supplicant/"
COPYRIGHT="2003-2012 Jouni Malinen"
LICENSE="BSD (2-clause)
GNU GPL v2"
REVISION="6"
SOURCE_URI="http://hostap.epitest.fi/releases/wpa_supplicant-2.0.tar.gz"
CHECKSUM_SHA256="2c115609fbb5223d51381084a5c944455a8afcda81d584173ff55ba233379e09"
PATCHES="wpa_supplicant-2.0.patch"
ARCHITECTURES="x86_gcc2 x86 x86_64"
PROVIDES="
wpa_supplicant = $portVersion compat >= 2
cmd:wpa_supplicant = $portVersion compat >= 2
"
REQUIRES="
haiku
lib:libssl
"
BUILD_REQUIRES="
devel:libssl >= 1.0.0
"
BUILD_PREREQUIRES="
haiku_devel
cmd:gcc
cmd:ld
cmd:make
"
BUILD()
{
cd wpa_supplicant
CFLAGS="-MMD -O2 -Wall" make wpa_supplicant LDO=g++
}
INSTALL()
{
cd wpa_supplicant
mkdir -p $binDir
cp -v wpa_supplicant $binDir
}