gentoo-ebuilds/net-misc/sipsak/sipsak-0.9.8.1.ebuild
Michael Mair-Keimberger b1203aef3e
net-misc/sipsak: EAPI8 bump, add 0.9.8.1
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/40655
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
2025-02-23 23:16:52 +01:00

27 lines
613 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic
DESCRIPTION="Small command line tool for testing SIP applications and devices"
HOMEPAGE="https://github.com/nils-ohlmeier/sipsak"
SRC_URI="https://github.com/nils-ohlmeier/sipsak/releases/download/${PV}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
net-dns/c-ares
net-libs/gnutls:="
DEPEND="${RDEPEND}
test? ( dev-libs/check )"
src_configure() {
append-cflags -std=gnu89 -fcommon
econf
}