diff options
author | Henrik Brix Andersen <brix@gentoo.org> | 2005-10-22 10:57:22 +0000 |
---|---|---|
committer | Henrik Brix Andersen <brix@gentoo.org> | 2005-10-22 10:57:22 +0000 |
commit | 6ba65d953fc6cf44c085edf52e049ba73141a741 (patch) | |
tree | 47dac42a26c30cf5fc971859313528fef2ddef7f /net-wireless | |
parent | Pruned old versions. (diff) | |
download | gentoo-2-6ba65d953fc6cf44c085edf52e049ba73141a741.tar.gz gentoo-2-6ba65d953fc6cf44c085edf52e049ba73141a741.tar.bz2 gentoo-2-6ba65d953fc6cf44c085edf52e049ba73141a741.zip |
Pruned old versions.
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'net-wireless')
7 files changed, 7 insertions, 356 deletions
diff --git a/net-wireless/wpa_supplicant/ChangeLog b/net-wireless/wpa_supplicant/ChangeLog index 54bfc0dad397..2f77987632c8 100644 --- a/net-wireless/wpa_supplicant/ChangeLog +++ b/net-wireless/wpa_supplicant/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-wireless/wpa_supplicant # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/ChangeLog,v 1.35 2005/10/17 10:19:19 brix Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/ChangeLog,v 1.36 2005/10/22 10:52:52 brix Exp $ + + 22 Oct 2005; Henrik Brix Andersen <brix@gentoo.org> + -files/wpa_supplicant-0.4.3-wpa_cli.action, + -files/wpa_supplicant-0.4.4-wpa_cli.action, + -wpa_supplicant-0.4.3-r1.ebuild, -wpa_supplicant-0.4.4.ebuild: + Pruned old versions. *wpa_supplicant-0.4.5 (17 Oct 2005) diff --git a/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.4.3-r1 b/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.4.3-r1 deleted file mode 100644 index 6babad7a72d1..000000000000 --- a/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.4.3-r1 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 ebcdf680d9092afa9f6249171d2387ca wpa_supplicant-0.4.3.tar.gz 373052 -MD5 efb9130cf1dcb829caa43af4e0bee2fb madwifi-cvs-snapshot-2005-04-20.tar.bz2 1968548 diff --git a/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.4.4 b/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.4.4 deleted file mode 100644 index 9958bd5a6437..000000000000 --- a/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.4.4 +++ /dev/null @@ -1 +0,0 @@ -MD5 29c70c9ee0891072db413459cdac2e18 wpa_supplicant-0.4.4.tar.gz 395049 diff --git a/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.3-wpa_cli.action b/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.3-wpa_cli.action deleted file mode 100644 index 834ec1dfe7ac..000000000000 --- a/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.3-wpa_cli.action +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# Copyright 1999-2005 Gentoo Foundation -# Written by Roy Marples <uberlord@gentoo.org> -# Distributed under the terms of the GNU General Public License v2 -# Alternatively, this file may be distributed under the terms of the BSD License -# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.3-wpa_cli.action,v 1.1 2005/06/27 11:34:37 brix Exp $ - -if [ -z "$1" -o -z "$2" ]; then - echo "Insufficient parameters" > /dev/stderr - exit 1 -fi - -INTERFACE="$1" -ACTION="$2" - -# Note, the below action must NOT mark the interface down via ifconfig, ip or -# similar. Addresses can be removed, changed and daemons can be stopped, but -# the interface must remain up for wpa_supplicant to work. - -if [ -f /etc/gentoo-release ]; then - EXEC="/etc/init.d/net.${INTERFACE} --quiet" -else - echo "I don't know what to do with this distro!" > /dev/stderr - exit 1 -fi - -case ${ACTION} in - CONNECTED) - EXEC="${EXEC} start" - ;; - DISCONNECTED) - EXEC="${EXEC} stop" - ;; - *) - echo "Unknown action ${ACTION}" > /dev/stderr - exit 1 - ;; -esac - -# ${EXEC} can use ${IN_BACKGROUND} so that it knows that the user isn't -# stopping the interface and a background process - like wpa_cli - is. -export IN_BACKGROUND=true - -${EXEC} diff --git a/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.4-wpa_cli.action b/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.4-wpa_cli.action deleted file mode 100644 index 1438e08ff3db..000000000000 --- a/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.4-wpa_cli.action +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# Copyright 1999-2005 Gentoo Foundation -# Written by Roy Marples <uberlord@gentoo.org> -# Distributed under the terms of the GNU General Public License v2 -# Alternatively, this file may be distributed under the terms of the BSD License -# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.4-wpa_cli.action,v 1.1 2005/08/22 12:53:24 brix Exp $ - -if [ -z "$1" -o -z "$2" ]; then - echo "Insufficient parameters" > /dev/stderr - exit 1 -fi - -INTERFACE="$1" -ACTION="$2" - -# Note, the below action must NOT mark the interface down via ifconfig, ip or -# similar. Addresses can be removed, changed and daemons can be stopped, but -# the interface must remain up for wpa_supplicant to work. - -if [ -f /etc/gentoo-release ]; then - EXEC="/etc/init.d/net.${INTERFACE} --quiet" -else - echo "I don't know what to do with this distro!" > /dev/stderr - exit 1 -fi - -case ${ACTION} in - CONNECTED) - EXEC="${EXEC} start" - ;; - DISCONNECTED) - EXEC="${EXEC} stop" - ;; - *) - echo "Unknown action ${ACTION}" > /dev/stderr - exit 1 - ;; -esac - -# ${EXEC} can use ${IN_BACKGROUND} so that it knows that the user isn't -# stopping the interface and a background process - like wpa_cli - is. -export IN_BACKGROUND=true - -${EXEC} diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-0.4.3-r1.ebuild b/net-wireless/wpa_supplicant/wpa_supplicant-0.4.3-r1.ebuild deleted file mode 100644 index 74639139c191..000000000000 --- a/net-wireless/wpa_supplicant/wpa_supplicant-0.4.3-r1.ebuild +++ /dev/null @@ -1,129 +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/wpa_supplicant/wpa_supplicant-0.4.3-r1.ebuild,v 1.2 2005/07/28 21:01:35 caleb Exp $ - -inherit eutils toolchain-funcs - -MY_P=${PN}-${PV/_/-} -S=${WORKDIR}/${MY_P} - -MADWIFI_VERSION="2005-04-20" - -DESCRIPTION="IEEE 802.1X/WPA supplicant for secure wireless transfers" -HOMEPAGE="http://hostap.epitest.fi/wpa_supplicant/" -SRC_URI="http://hostap.epitest.fi/releases/${MY_P}.tar.gz - mirror://gentoo/madwifi-cvs-snapshot-${MADWIFI_VERSION}.tar.bz2" -LICENSE="|| ( GPL-2 BSD )" - -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="debug gsm qt readline ssl" - -DEPEND="gsm? ( sys-apps/pcsc-lite ) - qt? ( =x11-libs/qt-3* ) - readline? ( sys-libs/ncurses - sys-libs/readline ) - ssl? ( dev-libs/openssl ) - >=sys-apps/baselayout-1.11.13" - -src_unpack() { - local CONFIG=${S}/.config - - unpack ${A} - - # toolchain setup - echo "CC = $(tc-getCC)" > ${CONFIG} - - # basic setup - echo "CONFIG_CTRL_IFACE=y" >> ${CONFIG} - - # basic authentication methods - echo "CONFIG_EAP_GTC=y" >> ${CONFIG} - echo "CONFIG_EAP_MD5=y" >> ${CONFIG} - echo "CONFIG_EAP_OTP=y" >> ${CONFIG} - echo "CONFIG_EAP_PSK=y" >> ${CONFIG} - echo "CONFIG_IEEE8021X_EAPOL=y" >> ${CONFIG} - echo "CONFIG_PKCS12=y" >> ${CONFIG} - - if ! use debug; then - echo "CONFIG_NO_STDOUT_DEBUG=y" >> ${CONFIG} - fi - - if use gsm; then - # smart card authentication - echo "CONFIG_EAP_SIM=y" >> ${CONFIG} - echo "CONFIG_EAP_AKA=y" >> ${CONFIG} - echo "CONFIG_PCSC=y" >> ${CONFIG} - fi - - if use readline; then - # readline/history support for wpa_cli - echo "CONFIG_READLINE=y" >> ${CONFIG} - fi - - if use ssl; then - # SSL authentication methods - echo "CONFIG_EAP_LEAP=y" >> ${CONFIG} - echo "CONFIG_EAP_MSCHAPV2=y" >> ${CONFIG} - echo "CONFIG_EAP_PEAP=y" >> ${CONFIG} - echo "CONFIG_EAP_TLS=y" >> ${CONFIG} - echo "CONFIG_EAP_TTLS=y" >> ${CONFIG} - echo "CONFIG_SMARTCARD=y" >> ${CONFIG} - fi - - # Linux specific drivers - echo "CONFIG_WIRELESS_EXTENSION=y" >> ${CONFIG} - echo "CONFIG_DRIVER_ATMEL=y" >> ${CONFIG} - echo "CONFIG_DRIVER_HOSTAP=y" >> ${CONFIG} - echo "CONFIG_DRIVER_IPW=y" >> ${CONFIG} - echo "CONFIG_DRIVER_NDISWRAPPER=y" >> ${CONFIG} - echo "CONFIG_DRIVER_PRISM54=y" >> ${CONFIG} - echo "CONFIG_DRIVER_WEXT=y" >> ${CONFIG} - echo "CONFIG_DRIVER_WIRED=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" - - if use qt; then - [[ -d ${QTDIR}/etc/settings ]] && addwrite ${QTDIR}/etc/settings - emake wpa_gui || die "emake wpa_gui failed" - fi -} - -src_install() { - into / - - dosbin wpa_supplicant - dobin wpa_cli wpa_passphrase - - newsbin ${FILESDIR}/${MY_P}-wpa_cli.action wpa_cli.action - - if use qt; then - into /usr - dobin wpa_gui/wpa_gui - fi - - dodoc ChangeLog COPYING developer.txt eap_testing.txt README todo.txt - dodoc doc/wpa_supplicant.fig - - insinto /etc - newins wpa_supplicant.conf wpa_supplicant.conf.example -} - -pkg_postinst() { - einfo - einfo "To use ${MY_P} you must create the configuration file" - einfo "/etc/wpa_supplicant.conf" - einfo - einfo "An example configuration file has been installed as" - einfo "/etc/wpa_supplicant.conf.example" - einfo - einfo "Please note that the wpa_supplicant init script has been" - einfo "removed in favor of sys-apps/baselayout-1.11.x" - einfo -} diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-0.4.4.ebuild b/net-wireless/wpa_supplicant/wpa_supplicant-0.4.4.ebuild deleted file mode 100644 index ca8db65236c2..000000000000 --- a/net-wireless/wpa_supplicant/wpa_supplicant-0.4.4.ebuild +++ /dev/null @@ -1,135 +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/wpa_supplicant/wpa_supplicant-0.4.4.ebuild,v 1.1 2005/08/22 12:53:24 brix Exp $ - -inherit eutils toolchain-funcs - -MY_P=${PN}-${PV/_/-} -S=${WORKDIR}/${MY_P} - -DESCRIPTION="IEEE 802.1X/WPA supplicant for secure wireless transfers" -HOMEPAGE="http://hostap.epitest.fi/wpa_supplicant/" -SRC_URI="http://hostap.epitest.fi/releases/${MY_P}.tar.gz" -LICENSE="|| ( GPL-2 BSD )" - -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="debug gsm madwifi qt readline ssl" - -DEPEND="gsm? ( sys-apps/pcsc-lite ) - qt? ( =x11-libs/qt-3* ) - readline? ( sys-libs/ncurses - sys-libs/readline ) - ssl? ( dev-libs/openssl ) - madwifi? ( >=net-wireless/madwifi-driver-0.1_pre20050420-r1 ) - >=sys-apps/baselayout-1.11.13" - -src_unpack() { - local CONFIG=${S}/.config - - unpack ${A} - - # toolchain setup - echo "CC = $(tc-getCC)" > ${CONFIG} - - # basic setup - echo "CONFIG_CTRL_IFACE=y" >> ${CONFIG} - - # basic authentication methods - echo "CONFIG_EAP_GTC=y" >> ${CONFIG} - echo "CONFIG_EAP_MD5=y" >> ${CONFIG} - echo "CONFIG_EAP_OTP=y" >> ${CONFIG} - echo "CONFIG_EAP_PSK=y" >> ${CONFIG} - echo "CONFIG_IEEE8021X_EAPOL=y" >> ${CONFIG} - echo "CONFIG_PKCS12=y" >> ${CONFIG} - - if ! use debug; then - echo "CONFIG_NO_STDOUT_DEBUG=y" >> ${CONFIG} - fi - - if use gsm; then - # smart card authentication - echo "CONFIG_EAP_SIM=y" >> ${CONFIG} - echo "CONFIG_EAP_AKA=y" >> ${CONFIG} - echo "CONFIG_PCSC=y" >> ${CONFIG} - fi - - if use readline; then - # readline/history support for wpa_cli - echo "CONFIG_READLINE=y" >> ${CONFIG} - fi - - if use ssl; then - # SSL authentication methods - echo "CONFIG_EAP_LEAP=y" >> ${CONFIG} - echo "CONFIG_EAP_MSCHAPV2=y" >> ${CONFIG} - echo "CONFIG_EAP_PEAP=y" >> ${CONFIG} - echo "CONFIG_EAP_TLS=y" >> ${CONFIG} - echo "CONFIG_EAP_TTLS=y" >> ${CONFIG} - echo "CONFIG_SMARTCARD=y" >> ${CONFIG} - fi - - # Linux specific drivers - echo "CONFIG_WIRELESS_EXTENSION=y" >> ${CONFIG} - echo "CONFIG_DRIVER_ATMEL=y" >> ${CONFIG} - echo "CONFIG_DRIVER_HOSTAP=y" >> ${CONFIG} - echo "CONFIG_DRIVER_IPW=y" >> ${CONFIG} - echo "CONFIG_DRIVER_NDISWRAPPER=y" >> ${CONFIG} - echo "CONFIG_DRIVER_PRISM54=y" >> ${CONFIG} - echo "CONFIG_DRIVER_WEXT=y" >> ${CONFIG} - echo "CONFIG_DRIVER_WIRED=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" - - if use qt; then - [[ -d ${QTDIR}/etc/settings ]] && addwrite ${QTDIR}/etc/settings - emake wpa_gui || die "emake wpa_gui failed" - fi -} - -src_install() { - into / - - dosbin wpa_supplicant - dobin wpa_cli wpa_passphrase - - newsbin ${FILESDIR}/${MY_P}-wpa_cli.action wpa_cli.action - - if use qt; then - into /usr - dobin wpa_gui/wpa_gui - fi - - dodoc ChangeLog COPYING eap_testing.txt README todo.txt - dodoc doc/wpa_supplicant.fig - - insinto /etc - newins wpa_supplicant.conf wpa_supplicant.conf.example -} - -pkg_postinst() { - einfo - einfo "To use ${MY_P} you must create the configuration file" - einfo "/etc/wpa_supplicant.conf" - einfo - einfo "An example configuration file has been installed as" - einfo "/etc/wpa_supplicant.conf.example" - einfo - einfo "Please note that the wpa_supplicant init script has been" - einfo "removed in favor of sys-apps/baselayout-1.11.x" - einfo - if use madwifi; then - einfo "This package now compiles against the headers installed by" - einfo "net-wireless/madwifi-driver. You should remerge ${PN} after" - einfo "upgrading net-wireless/madwifi-driver." - einfo - fi -} |