pentoo-overlay/net-analyzer/hyenae/hyenae-0.36.1.ebuild
Rick Farina (Zero_Chaos) 1ceb4a8da0
hyenae: updates
2024-05-01 16:30:21 -04:00

29 lines
649 B
Bash

# Copyright 1999-2024 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_P=${PN}-$(ver_rs 2- '-')
DESCRIPTION="a highly flexible packet generator"
HOMEPAGE="http://sourceforge.net/projects/hyenae/"
SRC_URI="https://downloads.sourceforge.net/${PN}/${MY_P}.tar.gz"
S=${WORKDIR}/${MY_P}
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="dev-libs/libdnet
net-libs/libpcap
dev-libs/libnl"
RDEPEND="${DEPEND}"
src_prepare() {
sed -e 's|$(DESTDIR)$(bindir)|$(DESTDIR)$(sbindir)|' -i src/Makefile.in || die "sed Makefile failed"
default
}
src_install() {
DESTDIR="${D}" emake install || die
}