gentoo/net-misc/sipp/sipp-3.7.5.ebuild
Jaco Kroon 2bea379d24
net-misc/sipp: update SRC_URI
Closes: https://bugs.gentoo.org/964541
Signed-off-by: Jaco Kroon <jkroon@gentoo.org>
2025-12-06 15:23:23 +02:00

56 lines
1.1 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="A free Open Source test tool / traffic generator for the SIP protocol"
HOMEPAGE="https://github.com/SIPp/sipp"
SRC_URI="https://github.com/SIPp/sipp/releases/download/v${PV}/${P}.tar.gz
https://github.com/SIPp/sipp/commit/0ad66bc14fe9ec41cdee50f9300fd6ea3048417d.patch -> ${PN}-3.7.5-cmake.patch"
LICENSE="GPL-2 ISC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gsl +pcap sctp +ssl"
DEPEND="sys-libs/ncurses:=
gsl? ( sci-libs/gsl:= )
pcap? (
net-libs/libpcap
net-libs/libnet:1.1
)
sctp? ( net-misc/lksctp-tools )
ssl? ( dev-libs/openssl:= )
"
RDEPEND="${DEPEND}"
PATCHES=(
"${DISTDIR}/${PN}-3.7.5-cmake.patch"
)
src_prepare() {
sed -e 's/ -Werror / /' -i "${S}/CMakeLists.txt" || die
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DUSE_GSL=$(usex gsl 1 0)
-DUSE_PCAP=$(usex pcap 1 0)
-DUSE_SCTP=$(usex sctp 1 0)
-DUSE_SSL=$(usex ssl 1 0)
)
cmake_src_configure
}
src_install() {
cmake_src_install
insinto /usr/share/${PN}
use pcap && doins pcap/*.pcap
dodoc CHANGES.md README.md
}