diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2019-04-03 11:52:35 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2019-04-03 11:52:35 +0000 |
commit | c7375ba9d4375fd70f06479c84bb1a2339a48486 (patch) | |
tree | dd159396d7cdff8051f99292dfbb3b904f537cc8 | |
parent | c6209858222ba8891cf906130016aed7eaaf0bcf (diff) |
Mark BROKEN on FreeBSD 12 and 13
Reported by: pkg-fallout
MFH: 2019Q2
Notes
Notes:
svn path=/head/; revision=497718
-rw-r--r-- | finance/vanitygen/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/finance/vanitygen/Makefile b/finance/vanitygen/Makefile index ffcf1dc649f9..7a76a54d721b 100644 --- a/finance/vanitygen/Makefile +++ b/finance/vanitygen/Makefile @@ -23,6 +23,13 @@ ALL_TARGET= most PLIST_FILES= bin/keyconv bin/vanitygen +.include <bsd.port.pre.mk> + +.if ${SSL_DEFAULT} == base +BROKEN_FreeBSD_12= field has incomplete type 'BIGNUM' (aka 'struct bignum_st') +BROKEN_FreeBSD_13= field has incomplete type 'BIGNUM' (aka 'struct bignum_st') +.endif + post-patch: @${REINPLACE_CMD} -e \ 's|-lpcre|$$(shell pcre-config --libs)| ; \ @@ -34,4 +41,4 @@ do-install: (cd ${WRKSRC} && ${INSTALL_PROGRAM} keyconv vanitygen \ ${STAGEDIR}${PREFIX}/bin) -.include <bsd.port.mk> +.include <bsd.port.post.mk> |