blob: 66693522bdf111d4babe1fa91258f3983528be78 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/xsupplicant/xsupplicant-0.8b.ebuild,v 1.3 2004/07/12 01:43:40 kloeri Exp $
S="${WORKDIR}/${PN}"
DESCRIPTION="Open Source Implementation of IEEE 802.1x"
SRC_URI="mirror://sourceforge/open1x/${P}.tar.gz"
HOMEPAGE="http://open1x.sourceforge.net"
IUSE=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
DEPEND=">=dev-libs/openssl-0.9.7
>=net-libs/libpcap-0.7.1
>=dev-libs/libdnet-1.6"
src_compile() {
econf || die "configure failed"
# does *NOT* like emake.
make || die "failed to compile"
}
src_install() {
make DESTDIR=${D} install || die "installation failed"
dodoc AUTHORS ChangeLog INSTALL NEWS README README.wireless_cards \
doc/README.certificates
}
|