summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Brix Andersen <brix@gentoo.org>2005-05-11 11:21:22 +0000
committerHenrik Brix Andersen <brix@gentoo.org>2005-05-11 11:21:22 +0000
commit3a409244af4cae8c430f648f4621ce758afab545 (patch)
tree628fb92ea1340ab438415b30f7644cfc8edd36a2 /net-wireless
parentFix depends to actually depend on glibc/binutils that sorda makes things work... (diff)
downloadgentoo-2-3a409244af4cae8c430f648f4621ce758afab545.tar.gz
gentoo-2-3a409244af4cae8c430f648f4621ce758afab545.tar.bz2
gentoo-2-3a409244af4cae8c430f648f4621ce758afab545.zip
Removed old ebuild
(Portage version: 2.0.51.21-r1)
Diffstat (limited to 'net-wireless')
-rw-r--r--net-wireless/hostapd/ChangeLog5
-rw-r--r--net-wireless/hostapd/files/digest-hostapd-0.4.02
-rw-r--r--net-wireless/hostapd/hostapd-0.4.0.ebuild83
3 files changed, 4 insertions, 86 deletions
diff --git a/net-wireless/hostapd/ChangeLog b/net-wireless/hostapd/ChangeLog
index 92e595b015b8..26d1442142ad 100644
--- a/net-wireless/hostapd/ChangeLog
+++ b/net-wireless/hostapd/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-wireless/hostapd
# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/hostapd/ChangeLog,v 1.27 2005/04/29 19:49:37 brix Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/hostapd/ChangeLog,v 1.28 2005/05/11 11:21:22 brix Exp $
+
+ 11 May 2005; <brix@gentoo.org> -hostapd-0.4.0.ebuild:
+ Removed old ebuild
*hostapd-0.4.0-r1 (29 Apr 2005)
diff --git a/net-wireless/hostapd/files/digest-hostapd-0.4.0 b/net-wireless/hostapd/files/digest-hostapd-0.4.0
deleted file mode 100644
index cbd70657b20a..000000000000
--- a/net-wireless/hostapd/files/digest-hostapd-0.4.0
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 e94731593b492bfad7a6b341c0514266 hostapd-0.4.0.tar.gz 257771
-MD5 efb9130cf1dcb829caa43af4e0bee2fb madwifi-cvs-snapshot-2005-04-20.tar.bz2 1968548
diff --git a/net-wireless/hostapd/hostapd-0.4.0.ebuild b/net-wireless/hostapd/hostapd-0.4.0.ebuild
deleted file mode 100644
index e5aa0b156154..000000000000
--- a/net-wireless/hostapd/hostapd-0.4.0.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/hostapd/hostapd-0.4.0.ebuild,v 1.1 2005/04/27 09:59:26 brix Exp $
-
-inherit toolchain-funcs
-
-MADWIFI_VERSION="2005-04-20"
-
-DESCRIPTION="HostAP wireless daemon"
-HOMEPAGE="http://hostap.epitest.fi"
-SRC_URI="http://hostap.epitest.fi/releases/${P}.tar.gz
- mirror://gentoo/madwifi-cvs-snapshot-${MADWIFI_VERSION}.tar.bz2"
-
-LICENSE="|| ( GPL-2 BSD )"
-SLOT="0"
-KEYWORDS="~x86 ~ppc"
-
-IUSE="ipv6 ssl"
-
-DEPEND="ssl? ( dev-libs/openssl )"
-
-src_unpack() {
- local CONFIG=${S}/.config
-
- unpack ${A}
-
- # 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}
-
- # Add include path for madwifi-driver headers
- echo "CFLAGS += -I${WORKDIR}/madwifi" >> ${CONFIG}
- echo "CONFIG_DRIVER_MADWIFI=y" >> ${CONFIG}
-}
-
-src_compile() {
- emake || die "emake failed"
-}
-
-src_install() {
- insinto /etc/hostapd
- doins hostapd.conf hostapd.accept hostapd.deny
-
- dosed 's:\(accept_mac_file=\)/etc/hostapd.accept:\1/etc/hostapd/hostapd.accept:g' \
- /etc/hostapd/hostapd.conf
- dosed 's:\(deny_mac_file=\)/etc/hostapd.deny:\1/etc/hostapd/hostapd.deny:g' \
- /etc/hostapd/hostapd.conf
-
- dosbin hostapd
-
- newinitd ${FILESDIR}/hostapd.init.d hostapd
-
- dodoc ChangeLog developer.txt README
-
- docinto examples
- dodoc madwifi.conf wired.conf
-}