1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00
freebsd-ports/security/sslscan/Makefile
Jamie Landeg-Jones a23e25b398 security/sslscan: update 2.0.16 -> 2.1.3
- Now uses openssl 3.2.1

PR:		275254
Approved by:	gavin (maintainer timeout)
Author:		Jamie Landeg-Jones <jamie@catflap.org>
2024-02-11 09:52:34 +01:00

36 lines
804 B
Makefile

PORTNAME= sslscan
DISTVERSION= 2.1.3
CATEGORIES= security
MASTER_SITES= https://www.openssl.org/source/:openssl \
ftp://ftp.cert.dfn.de/pub/tools/net/openssl/source/:openssl
DISTFILES= openssl-${OPENSSL_VERSION}.tar.gz:openssl
MAINTAINER= gavin@FreeBSD.org
COMMENT= Fast SSL port scanner
WWW= https://github.com/rbsec/sslscan/
LICENSE= GPLv3
USES= gmake perl5
USE_PERL5= build
USE_GITHUB= yes
GH_ACCOUNT= rbsec
OPENSSL_VERSION= 3.2.1
ALL_TARGET= static
.include <bsd.port.options.mk>
.if ${ARCH} == powerpc64
MAKE_ENV+= OSSL_TARGET=BSD-ppc64
.elif ${ARCH} == powerpc64le
MAKE_ENV+= OSSL_TARGET=BSD-ppc64le
.elif ${ARCH} == riscv64
MAKE_ENV+= OSSL_TARGET=BSD-riscv64
.endif
post-patch:
$(LN) -sf "${WRKDIR}/openssl-${OPENSSL_VERSION}" "${WRKSRC}/openssl"
.include <bsd.port.mk>