blob: 07f7f81254b74e92b30d8f8a2e95afbe260069c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/xsupplicant/xsupplicant-1.0.ebuild,v 1.2 2007/04/28 17:04:12 swegener Exp $
S="${WORKDIR}/${PN}"
DESCRIPTION="Open Source Implementation of IEEE 802.1x"
HOMEPAGE="http://open1x.sourceforge.net"
SRC_URI="mirror://sourceforge/open1x/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=dev-libs/openssl-0.9.7
sys-apps/pcsc-lite"
src_compile() {
econf --enable-eap-sim || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR=${D} install || die "emake install failed"
dodoc AUTHORS README README.wireless_cards \
doc/README.certificates doc/Open1x-UserGuide.pdf
docinto examples
dodoc etc/*-example.conf
insinto /etc
newins etc/xsupplicant.conf xsupplicant.conf.example
newinitd ${FILESDIR}/xsupplicant.init.d xsupplicant
newconfd ${FILESDIR}/xsupplicant.conf.d xsupplicant
}
pkg_postinst() {
einfo
einfo "To use ${P} you must create the configuration file"
einfo "/etc/xsupplicant.conf"
einfo
einfo "An example configuration file has been installed as"
einfo "/etc/xsupplicant.conf.example"
einfo
}
|