mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 00:16:22 +01:00
29 lines
649 B
Bash
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
|
|
}
|