mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-19 13:20:57 +02:00
horst: ebuild idea from steev, attempted by The_Eccentric, and worked on by all.
This commit is contained in:
parent
71ca64bca1
commit
d526e1bd9c
2 changed files with 33 additions and 0 deletions
2
net-wireless/horst/Manifest
Normal file
2
net-wireless/horst/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST horst-3.0.tar.gz 63179 RMD160 9fb84a68baef5a09a5bb6f7a433ddc967fb3ae90 SHA1 b7bf94f819285c3d0e79d0fba921ab8221cc6e47 SHA256 7d8de85ff8715f3bea7ccecc0382e2d3c48bccce4be6dee5f1d0d15447776cc8
|
||||
EBUILD horst-3.0.ebuild 548 RMD160 9a2a9cf765a00f1d2fb0ba05b2600362ba21cc2f SHA1 1ce08437258262f080e36d6cba54cbaaa8529e64 SHA256 f83146789e468b7298b91e1ca246a49ed22316a40375423d9db0bdc6e7f09423
|
||||
31
net-wireless/horst/horst-3.0.ebuild
Normal file
31
net-wireless/horst/horst-3.0.ebuild
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=4
|
||||
|
||||
DESCRIPTION="Small 802.11 wireless LAN analyzer"
|
||||
HOMEPAGE="http://br1.einfach.org/tech/horst/"
|
||||
SRC_URI="http://br1.einfach.org/horst_dl/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm"
|
||||
IUSE="+pcap"
|
||||
|
||||
DEPEND="sys-libs/ncurses
|
||||
pcap? ( net-libs/libpcap )"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_compile() {
|
||||
if use pcap; then
|
||||
emake PCAP=1
|
||||
else
|
||||
emake
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dosbin horst
|
||||
dodoc ChangeLog README TODO
|
||||
}
|
||||
Loading…
Reference in a new issue