gentoo-ebuilds/app-crypt/cryptopant/cryptopant-1.3.2.ebuild
Nicolas PARLANT 4bed92bccd
app-crypt/cryptopant: Bump to 1.3.2
bugfix w/ only one missing header.

Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr>
Part-of: https://github.com/gentoo/gentoo/pull/44445
Signed-off-by: Sam James <sam@gentoo.org>
2025-11-04 11:04:38 +00:00

27 lines
630 B
Bash

# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN=cryptopANT
DESCRIPTION="C library for IP address anonymization using crypto-PAn algorithm"
HOMEPAGE="https://ant.isi.edu/software/cryptopANT/"
SRC_URI="https://ant.isi.edu/software/cryptopANT/${MY_PN}-${PV}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
# GPL-3+ for m4/ax_cflags_warn_all.m4
LICENSE="GPL-2 GPL-3+"
SLOT="0/1"
KEYWORDS="~amd64 ~x86"
RDEPEND=">=dev-libs/openssl-3.0.0:="
DEPEND="${RDEPEND}"
src_configure() {
econf --with-scramble_ips
}
src_install() {
default
find "${D}" -name '*.la' -delete || die
}