# Copyright 2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit autotools DESCRIPTION="Small SSHv2 library with SFTP support" HOMEPAGE="https://www.wolfssl.com/products/wolfssh/ https://github.com/wolfSSL/wolfssh" SRC_URI="https://github.com/wolfSSL/${PN}/archive/refs/tags/v${PV}-stable.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/${P}-stable" LICENSE="GPL-3" SLOT="0/16" KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="debug +sftp" RDEPEND=">=dev-libs/wolfssl-5.9.2:=" DEPEND="${RDEPEND}" src_prepare() { default; eautoreconf; } src_configure() { econf --disable-examples $(use_enable debug) $(use_enable sftp); } src_test() { emake check; }