mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-24 01:52:38 +01:00
97 lines
2.9 KiB
Plaintext
97 lines
2.9 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=hostapd
|
|
pkgver=2.7
|
|
pkgrel=0
|
|
pkgdesc="daemon for wireless software access points"
|
|
url="http://hostap.epitest.fi/hostapd/"
|
|
arch="all"
|
|
license="custom"
|
|
makedepends="openssl-dev libnl3-dev linux-headers"
|
|
subpackages="$pkgname-doc $pkgname-openrc"
|
|
patches="CVE-2012-4445.patch
|
|
"
|
|
|
|
source="http://hostap.epitest.fi/releases/$pkgname-$pkgver.tar.gz
|
|
$patches
|
|
$pkgname.initd
|
|
$pkgname.confd"
|
|
options="!check" #no testsuite
|
|
builddir="$srcdir"/$pkgname-$pkgver/hostapd
|
|
|
|
# secfixes:
|
|
# 2.7-r0:
|
|
# - CVE-2017-13082
|
|
# 2.6-r2:
|
|
# - CVE-2017-13077
|
|
# - CVE-2017-13078
|
|
# - CVE-2017-13079
|
|
# - CVE-2017-13080
|
|
# - CVE-2017-13081
|
|
# - CVE-2017-13082
|
|
# - CVE-2017-13086
|
|
# - CVE-2017-13087
|
|
# - CVE-2017-13088
|
|
|
|
prepare() {
|
|
local conf="$builddir/.config"
|
|
|
|
cd "$builddir"/..
|
|
for i in $patches; do
|
|
msg $i
|
|
patch -p1 -i "$srcdir"/$i
|
|
done
|
|
|
|
cd "$builddir"
|
|
sed -i -e "s:/etc/hostapd:/etc/hostapd/hostapd:g" \
|
|
hostapd.conf
|
|
|
|
# toolchain setup
|
|
sed \
|
|
-e '/^#CONFIG_DRIVER_NL80211=y/s/^#//' \
|
|
-e '/^#CONFIG_RADIUS_SERVER=y/s/^#//' \
|
|
-e '/^#CONFIG_DRIVER_WIRED=y/s/^#//' \
|
|
-e '/^#CONFIG_DRIVER_NONE=y/s/^#//' \
|
|
-e '/^#CONFIG_IEEE80211N=y/s/^#//' \
|
|
-e '/^#CONFIG_IEEE80211R=y/s/^#//' \
|
|
-e '/^#CONFIG_IEEE80211AC=y/s/^#//' \
|
|
-e '/^#CONFIG_FULL_DYNAMIC_VLAN=y/s/^#//' \
|
|
-e '/^#CONFIG_LIBNL32=y/s/^#//' \
|
|
-e '/^#CONFIG_ACS=y/s/^#//' \
|
|
defconfig >> .config
|
|
echo "CC ?= ${CC:-gcc}" >> .config
|
|
echo "CFLAGS += -I/usr/include/libnl3" >> .config
|
|
echo "LIBS += -L/usr/lib" >> .config
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
make
|
|
msg "nt_password_hash"
|
|
make nt_password_hash
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
install -d "$pkgdir"/etc/hostapd
|
|
install hostapd.conf hostapd.accept hostapd.deny hostapd.eap_user \
|
|
hostapd.radius_clients hostapd.sim_db hostapd.wpa_psk \
|
|
"$pkgdir"/etc/hostapd/
|
|
|
|
install -Dm755 hostapd "$pkgdir"/usr/sbin/hostapd \
|
|
&& install -Dm755 hostapd_cli "$pkgdir"/usr/bin/hostapd_cli \
|
|
&& install -Dm755 nt_password_hash \
|
|
"$pkgdir"/usr/bin/nt_password_hash \
|
|
&& install -Dm755 "$srcdir"/hostapd.initd \
|
|
"$pkgdir"/etc/init.d/hostapd \
|
|
&& install -Dm644 "$srcdir"/hostapd.confd \
|
|
"$pkgdir"/etc/conf.d/hostapd \
|
|
&& install -Dm644 hostapd.8 \
|
|
"$pkgdir"/usr/share/man/man8/hostapd.8 \
|
|
&& install -Dm644 hostapd_cli.1 \
|
|
"$pkgdir"/usr/share/man/man1/hostapd_cli
|
|
}
|
|
sha512sums="1c9a210dfffb951fb667be19aa44ad8c66dccd2aed26cdab939185923550e3c1998a678ebe6975e560e1b3385bff2098f1b2cb773452ba66fb35246fdd3eb2c1 hostapd-2.7.tar.gz
|
|
619acce84516dead1e03e5da71657ea4c4b6f3ca8271574409773aeb316cbddc88095b50320804f457f001f4f3fe83053e660c008d8409f59bb4d3bfe058b601 CVE-2012-4445.patch
|
|
b54b7c6aa17e5cb86a9b354a516eb2dbefb544df18471339c61d82776de447011a2ac290bea1e6c8beae4b6cebefafb8174683ea42fb773e9e8fe6c679f33ba3 hostapd.initd
|
|
0882263bbd7c0b05bf51f51d66e11a23a0b8ca7da2a3b8a30166d2c5f044c0c134e6bccb1d02c9e81819ca8fb0c0fb55c7121a08fe7233ccaa73ff8ab9a238fe hostapd.confd"
|