mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-05 02:50:26 +02:00
25 lines
640 B
Bash
25 lines
640 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
inherit toolchain-funcs eutils subversion
|
|
|
|
DESCRIPTION="A generic library for injecting 802.11 frames"
|
|
HOMEPAGE="http://802.11ninja.net/lorcon"
|
|
SRC_URI=""
|
|
ESVN_REPO_URI="http://802.11ninja.net/svn/lorcon/branch/lorcon-old"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="$RDEPEND"
|
|
RDEPEND="dev-libs/libnl
|
|
net-libs/libpcap"
|
|
|
|
src_install() {
|
|
DESTDIR="${D}" emake install
|
|
# rename manpage to avoid conflict with lorcon
|
|
mv "${D}"/usr/share/man/man3/lorcon.3 "${D}"/usr/share/man/man3/lorcon-old.3
|
|
}
|