Add ProZilla 2.2.0 and libprozilla 1.2.0 packages

This commit is contained in:
Mario Fetka
2026-07-14 17:19:05 +02:00
parent e8e60a0a4f
commit a5916e5488
18 changed files with 261 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# 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; }