summaryrefslogtreecommitdiff
path: root/community-testing
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing')
-rw-r--r--community-testing/hostapd/PKGBUILD55
-rw-r--r--community-testing/hostapd/config96
2 files changed, 119 insertions, 32 deletions
diff --git a/community-testing/hostapd/PKGBUILD b/community-testing/hostapd/PKGBUILD
index 8d42df603..651e39976 100644
--- a/community-testing/hostapd/PKGBUILD
+++ b/community-testing/hostapd/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 64577 2012-02-16 20:40:45Z heftig $
+# $Id: PKGBUILD 65319 2012-02-21 00:00:16Z heftig $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
_madwifiver=0.9.4.4133
pkgname=hostapd
pkgver=0.7.3
-pkgrel=6
+pkgrel=7
pkgdesc="daemon for wireless software access points"
arch=('i686' 'x86_64')
url="http://hostap.epitest.fi/hostapd/"
@@ -28,54 +28,45 @@ install=hostapd.install
source=(http://hostap.epitest.fi/releases/$pkgname-$pkgver.tar.gz
ftp://ftp.archlinux.org/other/madwifi/madwifi-${_madwifiver}.tar.bz2
hostap_allow-linking-with-libnl-3.2.patch
- config.bz2
+ config
hostapd
hostapd.conf.d)
md5sums=('91a7c8d0f090b7104152d3455a84c112'
'ca3c3504d000e7b3d7063af46271c932'
'e904e62b12c5d64132dd9441e8b45dce'
- 'aa86f89f51b39cea75a8c15f7b376a67'
+ 'bfe5701bc93d5d091e6f1a93f1a32dd6'
'd570327c385f34a4af24d3a0d61cea19'
'f169534b0f59b341f6df1a21e0344511')
build() {
- cd $srcdir/$pkgname-$pkgver
+ cd "$srcdir/$pkgname-$pkgver"
patch -Np1 -i "$srcdir/hostap_allow-linking-with-libnl-3.2.patch"
cd hostapd
- cp ../../config ./.config
+ cp "$srcdir/config" ./.config
- sed -i "s|/usr|$srcdir/madwifi|" .config
- sed -i "s|/usr/local/bin|$pkgdir/usr/bin|" Makefile
-
- mkdir -p $pkgdir/usr/bin $pkgdir/etc/hostapd \
- $pkgdir/usr/man/man1 $pkgdir/usr/man/man8 \
- $pkgdir/usr/share/licenses/$pkgname $pkgdir/etc/rc.d
+ sed -i "s|@@madwifi@@|$srcdir/madwifi|" .config
+ sed -i 's#/etc/hostapd#/etc/hostapd/hostapd#' hostapd.conf
make
}
package() {
- cd $srcdir/$pkgname-$pkgver/hostapd
- make DESTDIR=$pkg install
+ cd "$srcdir/$pkgname-$pkgver/hostapd"
+
+ install -D hostapd "$pkgdir/usr/bin/hostapd"
+ install hostapd_cli "$pkgdir/usr/bin/hostapd_cli"
+
+ install -Dm644 hlr_auc_gw.milenage_db "$pkgdir/etc/hostapd/hlr_auc_gw.milenage_db"
+ install -m644 -t "$pkgdir/etc/hostapd" \
+ hostapd.{accept,conf,deny,eap_user,radius_clients,sim_db,vlan,wpa_psk} \
+ wired.conf
+
+ install -Dm644 hostapd.8 "$pkgdir/usr/share/man/man8/hostapd.8"
+ install -Dm644 hostapd_cli.1 "$pkgdir/usr/share/man/man1/hostapd_cli.1"
- cp hlr_auc_gw.milenage_db $pkgdir/etc/hostapd
- cp hostapd.accept $pkgdir/etc/hostapd
- cp hostapd.conf $pkgdir/etc/hostapd
- cp hostapd.deny $pkgdir/etc/hostapd
- cp hostapd.eap_user $pkgdir/etc/hostapd
- cp hostapd.radius_clients $pkgdir/etc/hostapd
- cp hostapd.sim_db $pkgdir/etc/hostapd
- cp hostapd.vlan $pkgdir/etc/hostapd
- cp hostapd.wpa_psk $pkgdir/etc/hostapd
- cp wired.conf $pkgdir/etc/hostapd
- cp hostapd.8 $pkgdir/usr/man/man8
- cp hostapd_cli.1 $pkgdir/usr/man/man1
- cp ../COPYING $pkgdir/usr/share/licenses/hostapd
- cp ../../hostapd $pkgdir/etc/rc.d
- mkdir -p $pkgdir/etc/conf.d
- cp ../../hostapd.conf.d $pkgdir/etc/conf.d/hostapd
+ install -D "$srcdir/hostapd" "$pkgdir/etc/rc.d/hostapd"
+ install -Dm644 "$srcdir/hostapd.conf.d" "$pkgdir/etc/conf.d/hostapd"
- mv $pkgdir/usr/man $pkgdir/usr/share/
- sed -i 's#/etc/hostapd#/etc/hostapd/hostapd#' $pkgdir/etc/hostapd/hostapd.conf
+ install -Dm644 ../COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}
diff --git a/community-testing/hostapd/config b/community-testing/hostapd/config
new file mode 100644
index 000000000..d77e77461
--- /dev/null
+++ b/community-testing/hostapd/config
@@ -0,0 +1,96 @@
+# Example hostapd build time configuration
+#
+# This file lists the configuration options that are used when building the
+# hostapd binary. All lines starting with # are ignored. Configuration option
+# lines must be commented out complete, if they are not to be included, i.e.,
+# just setting VARIABLE=n is not disabling that variable.
+#
+# This file is included in Makefile, so variables like CFLAGS and LIBS can also
+# be modified from here. In most cass, these lines should use += in order not
+# to override previous values of the variables.
+
+# Driver interface for Host AP driver
+CONFIG_DRIVER_HOSTAP=y
+
+# Driver interface for wired authenticator
+CONFIG_DRIVER_WIRED=y
+
+# Driver interface for madwifi driver
+CONFIG_DRIVER_MADWIFI=y
+CFLAGS += -I@@madwifi@@ # change to reflect local setup; directory for madwifi src
+
+# Driver interface for Prism54 driver
+CONFIG_DRIVER_PRISM54=y
+
+# IEEE 802.11F/IAPP
+CONFIG_IAPP=y
+
+# WPA2/IEEE 802.11i RSN pre-authentication
+CONFIG_RSN_PREAUTH=y
+
+# PeerKey handshake for Station to Station Link (IEEE 802.11e DLS)
+CONFIG_PEERKEY=y
+
+# IEEE 802.11w (management frame protection)
+# This version is an experimental implementation based on IEEE 802.11w/D1.0
+# draft and is subject to change since the standard has not yet been finalized.
+# Driver support is also needed for IEEE 802.11w.
+CONFIG_IEEE80211W=y
+
+# Integrated EAP server
+CONFIG_EAP=y
+
+# EAP-MD5 for the integrated EAP server
+CONFIG_EAP_MD5=y
+
+# EAP-TLS for the integrated EAP server
+CONFIG_EAP_TLS=y
+
+# EAP-MSCHAPv2 for the integrated EAP server
+CONFIG_EAP_MSCHAPV2=y
+
+# EAP-PEAP for the integrated EAP server
+CONFIG_EAP_PEAP=y
+
+# EAP-GTC for the integrated EAP server
+CONFIG_EAP_GTC=y
+
+# EAP-TTLS for the integrated EAP server
+CONFIG_EAP_TTLS=y
+
+# EAP-SIM for the integrated EAP server
+CONFIG_EAP_SIM=y
+
+# EAP-AKA for the integrated EAP server
+CONFIG_EAP_AKA=y
+
+# EAP-PAX for the integrated EAP server
+CONFIG_EAP_PAX=y
+
+# EAP-PSK for the integrated EAP server (this is _not_ needed for WPA-PSK)
+CONFIG_EAP_PSK=y
+
+# EAP-SAKE for the integrated EAP server
+CONFIG_EAP_SAKE=y
+
+# EAP-GPSK for the integrated EAP server
+CONFIG_EAP_GPSK=y
+# Include support for optional SHA256 cipher suite in EAP-GPSK
+CONFIG_EAP_GPSK_SHA256=y
+
+# PKCS#12 (PFX) support (used to read private key and certificate file from
+# a file that usually has extension .p12 or .pfx)
+CONFIG_PKCS12=y
+
+# RADIUS authentication server. This provides access to the integrated EAP
+# server from external hosts using RADIUS.
+CONFIG_RADIUS_SERVER=y
+
+# Build IPv6 support for RADIUS operations
+CONFIG_IPV6=y
+
+CONFIG_DRIVER_NL80211=y
+
+CONFIG_IEEE80211N=y
+
+CONFIG_LIBNL32=y