diff options
author | Sergei Vyshenski <svysh.fbsd@gmail.com> | 2023-11-15 18:12:03 +0100 |
---|---|---|
committer | Robert Clausecker <fuz@FreeBSD.org> | 2024-02-22 13:31:22 +0100 |
commit | 99a65e60e62bf7734d283eff7ff737e4d084536c (patch) | |
tree | 76618c72c9bd9e38ced2244654a72854d149b107 /security/p5-Crypt-OpenSSL-AES/Makefile | |
parent | net-mgmt/cacti: update to 1.2.26 (diff) |
security/p5-Crypt-OpenSSL-AES: Update to 0.19
- huge update 0.02 --> 0.19
- add LICENSE and DEPENDS groups
- comply with openssl as ssl=base, openssl111, openssl31, openssl32, libressl
- strip .so library
- shebangfix
- assign maintainership
- can take m-ship if John Ferrell <jdferrell3@yahoo.com> finds this appropriate
ChangeLog: https://metacpan.org/release/TIMLEGGE/Crypt-OpenSSL-AES-0.19/source/Changes
PR: 275112
Approved by: jdferrell3@yahoo.com (maintainer timeout)
Diffstat (limited to 'security/p5-Crypt-OpenSSL-AES/Makefile')
-rw-r--r-- | security/p5-Crypt-OpenSSL-AES/Makefile | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/security/p5-Crypt-OpenSSL-AES/Makefile b/security/p5-Crypt-OpenSSL-AES/Makefile index 06d160f0405f..15ac55276a6a 100644 --- a/security/p5-Crypt-OpenSSL-AES/Makefile +++ b/security/p5-Crypt-OpenSSL-AES/Makefile @@ -1,16 +1,32 @@ PORTNAME= Crypt-OpenSSL-AES -PORTVERSION= 0.02 -PORTREVISION= 3 +PORTVERSION= 0.19 CATEGORIES= security perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= jdferrell3@yahoo.com +MAINTAINER= svysh.fbsd@gmail.com COMMENT= Perl wrapper around OpenSSL's AES library WWW= https://metacpan.org/release/Crypt-OpenSSL-AES -USES= perl5 ssl +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-OpenSSL-Guess>=0.10:security/p5-Crypt-OpenSSL-Guess \ + p5-File-Which>=0:sysutils/p5-File-Which + +USES= perl5 shebangfix ssl USE_PERL5= configure +SHEBANG_FILES= t/* +perl_OLD_CMD= .*perl MAKE_ARGS+= PASTHRU_INC=-I${OPENSSLINC} +pre-configure: + ${REINPLACE_CMD} -e 's|SSLBIN|${OPENSSLBASE}/bin/openssl|g' ${WRKSRC}/t/00-openssl-version.t + ${REINPLACE_CMD} -e 's|SSLBIN|${OPENSSLBASE}/bin/openssl|g' ${WRKSRC}/t/09-key-size.t + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_PERL_REL}/${PERL_ARCH}/${PERL_VER}/auto/Crypt/OpenSSL/AES/AES.so + .include <bsd.port.mk> |