blob: 825aa7753821ab80c83886adbea1af0f921b2bc7 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
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
}
|