diff options
author | Bjarke Istrup Pedersen <gurligebis@gentoo.org> | 2008-08-20 22:12:18 +0000 |
---|---|---|
committer | Bjarke Istrup Pedersen <gurligebis@gentoo.org> | 2008-08-20 22:12:18 +0000 |
commit | 16eaae0959541a3808c7d23aeb9b1ee1a0b46f05 (patch) | |
tree | 5463fa22184aa1166f362003e98f4dbdc2e2e231 /net-wireless | |
parent | readd jbig USE-flag, by Fabian Groffen <grobian@gentoo.org> in bug #235131 (diff) | |
download | gentoo-2-16eaae0959541a3808c7d23aeb9b1ee1a0b46f05.tar.gz gentoo-2-16eaae0959541a3808c7d23aeb9b1ee1a0b46f05.tar.bz2 gentoo-2-16eaae0959541a3808c7d23aeb9b1ee1a0b46f05.zip |
Removing 0.4.9 since it is no longer being developed on, and 0.5.10 is
finally marked stable.
(Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc3 i686)
Diffstat (limited to 'net-wireless')
-rw-r--r-- | net-wireless/hostapd/ChangeLog | 8 | ||||
-rw-r--r-- | net-wireless/hostapd/files/hostapd-0.4.9-conf.d | 9 | ||||
-rw-r--r-- | net-wireless/hostapd/files/hostapd-0.4.9-init.d | 50 | ||||
-rw-r--r-- | net-wireless/hostapd/hostapd-0.4.9.ebuild | 119 |
4 files changed, 7 insertions, 179 deletions
diff --git a/net-wireless/hostapd/ChangeLog b/net-wireless/hostapd/ChangeLog index 4075ee143a93..6f14ea1ba282 100644 --- a/net-wireless/hostapd/ChangeLog +++ b/net-wireless/hostapd/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-wireless/hostapd # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/hostapd/ChangeLog,v 1.84 2008/08/20 19:43:42 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/hostapd/ChangeLog,v 1.85 2008/08/20 22:12:17 gurligebis Exp $ + + 20 Aug 2008; Bjarke Istrup Pedersen <gurligebis@gentoo.org> + -files/hostapd-0.4.9-conf.d, -files/hostapd-0.4.9-init.d, + -hostapd-0.4.9.ebuild: + Removing 0.4.9, since it has been out of development for a long time, and + 0.5.10 finally is stable 20 Aug 2008; Markus Meier <maekke@gentoo.org> hostapd-0.5.10.ebuild: amd64/x86 stable, bug #234503 diff --git a/net-wireless/hostapd/files/hostapd-0.4.9-conf.d b/net-wireless/hostapd/files/hostapd-0.4.9-conf.d deleted file mode 100644 index 7d05735eb3b4..000000000000 --- a/net-wireless/hostapd/files/hostapd-0.4.9-conf.d +++ /dev/null @@ -1,9 +0,0 @@ -# Space separated List of interfaces which needs to be started before -# hostapd -INTERFACES="wlan0" - -# Space separated list of configuration files -CONFIGS="/etc/hostapd/hostapd.conf" - -# Extra options to pass to hostapd, see hostapd(8) -OPTIONS="" diff --git a/net-wireless/hostapd/files/hostapd-0.4.9-init.d b/net-wireless/hostapd/files/hostapd-0.4.9-init.d deleted file mode 100644 index 23784004d3d4..000000000000 --- a/net-wireless/hostapd/files/hostapd-0.4.9-init.d +++ /dev/null @@ -1,50 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/hostapd/files/hostapd-0.4.9-init.d,v 1.1 2006/05/27 19:57:22 brix Exp $ - -opts="start stop reload" - -depend() { - local iface - - for iface in ${INTERFACES}; do - need net.${iface} - done - - use logger -} - -checkconfig() { - local file - - for file in ${CONFIGS}; do - if [[ ! -r ${file} ]]; then - eerror "hostapd configuration file (${CONFIG}) not found" - return 1 - fi - done -} - -start() { - checkconfig || return 1 - - ebegin "Starting hostapd" - start-stop-daemon --start --exec /usr/sbin/hostapd \ - -- -B ${OPTIONS} ${CONFIGS} - eend ${?} -} - -stop() { - ebegin "Stopping hostapd" - start-stop-daemon --stop --exec /usr/sbin/hostapd - eend ${?} -} - -reload() { - checkconfig || return 1 - - ebegin "Reloading hostapd configuration" - kill -HUP $(pidof /usr/sbin/hostapd) > /dev/null 2>&1 - eend ${?} -} diff --git a/net-wireless/hostapd/hostapd-0.4.9.ebuild b/net-wireless/hostapd/hostapd-0.4.9.ebuild deleted file mode 100644 index af5ca211ea41..000000000000 --- a/net-wireless/hostapd/hostapd-0.4.9.ebuild +++ /dev/null @@ -1,119 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/hostapd/hostapd-0.4.9.ebuild,v 1.7 2008/06/03 02:01:41 mr_bones_ Exp $ - -inherit toolchain-funcs - -DESCRIPTION="IEEE 802.11 wireless LAN Host AP daemon" -HOMEPAGE="http://hostap.epitest.fi" -SRC_URI="http://hostap.epitest.fi/releases/${P}.tar.gz" - -LICENSE="|| ( GPL-2 BSD )" -SLOT="0" -KEYWORDS="~amd64 ppc x86" - -IUSE="ipv6 logwatch madwifi ssl" - -RDEPEND="ssl? ( dev-libs/openssl ) - madwifi? ( || - ( >net-wireless/madwifi-ng-tools-0.9.3 - net-wireless/madwifi-old ) )" -DEPEND="${RDEPEND} - sys-apps/sed" - -src_unpack() { - local CONFIG=${S}/.config - - unpack ${A} - - sed -i -e "s:/etc/hostapd:/etc/hostapd/hostapd:g" \ - "${S}/hostapd.conf" - - # toolchain setup - echo "CC = $(tc-getCC)" > ${CONFIG} - - # authentication methods - echo "CONFIG_EAP=y" >> ${CONFIG} - echo "CONFIG_EAP_MD5=y" >> ${CONFIG} - echo "CONFIG_EAP_GTC=y" >> ${CONFIG} - echo "CONFIG_IAPP=y" >> ${CONFIG} - echo "CONFIG_PKCS12=y" >> ${CONFIG} - echo "CONFIG_RADIUS_SERVER=y" >> ${CONFIG} - echo "CONFIG_RSN_PREAUTH=y" >> ${CONFIG} - echo "CONFIG_EAP_SIM=y" >> ${CONFIG} - - if use ssl; then - # SSL authentication methods - echo "CONFIG_EAP_MSCHAPV2=y" >> ${CONFIG} - echo "CONFIG_EAP_PEAP=y" >> ${CONFIG} - echo "CONFIG_EAP_TLS=y" >> ${CONFIG} - echo "CONFIG_EAP_TTLS=y" >> ${CONFIG} - fi - - if use ipv6; then - echo "CONFIG_IPV6=y" >> ${CONFIG} - fi - - # Linux specific drivers - echo "CONFIG_DRIVER_HOSTAP=y" >> ${CONFIG} - echo "CONFIG_DRIVER_WIRED=y" >> ${CONFIG} - echo "CONFIG_DRIVER_PRISM54=y" >> ${CONFIG} - - if use madwifi; then - # Add include path for madwifi-driver headers - echo "CFLAGS += -I/usr/include/madwifi" >> ${CONFIG} - echo "CONFIG_DRIVER_MADWIFI=y" >> ${CONFIG} - fi -} - -src_compile() { - emake || die "emake failed" -} - -src_install() { - insinto /etc/hostapd - doins hostapd.conf hostapd.accept hostapd.deny \ - hostapd.eap_user hostapd.radius_clients hostapd.sim_db hostapd.wpa_psk - - dosbin hostapd - dobin hostapd_cli - - newinitd "${FILESDIR}/${P}-init.d" hostapd - newconfd "${FILESDIR}/${P}-conf.d" hostapd - - doman hostapd.8 hostapd_cli.1 - - dodoc ChangeLog developer.txt README - - docinto examples - dodoc madwifi.conf wired.conf - - if use logwatch; then - insinto /etc/log.d/conf/services/ - doins logwatch/hostapd.conf - - exeinto /etc/log.d/scripts/services/ - doexe logwatch/hostapd - fi -} - -pkg_postinst() { - einfo - einfo "In order to use ${PN} you need to set up your wireless card" - einfo "for master mode in /etc/conf.d/net or /etc/conf.d/wireless" - einfo "and then start /etc/init.d/hostapd." - einfo - einfo "Example configuration:" - einfo - einfo "config_wlan0=( \"192.168.1.1/24\" )" - einfo "channel_wlan0=\"6\"" - einfo "essid_wlan0=\"test\"" - einfo "mode_wlan0=\"master\"" - einfo - if use madwifi; then - einfo "This package compiles against the headers installed by" - einfo "madwifi-old, madwifi-ng or madwifi-ng-tools." - einfo "You should remerge ${PN} after upgrading these packages." - einfo - fi -} |