diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-11-29 18:46:21 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-11-29 18:46:21 +0000 |
commit | 703ff6d36176652e995eaf56e44c8637531c23a3 (patch) | |
tree | 81e5478fa11645e21ab75a8faa039b5e6d1918c5 /irc | |
parent | 86cfbd0ce0c270d196500fc7ff12a4a238cf18fa (diff) | |
download | ports-703ff6d36176652e995eaf56e44c8637531c23a3.tar.gz ports-703ff6d36176652e995eaf56e44c8637531c23a3.zip |
Notes
Diffstat (limited to 'irc')
-rw-r--r-- | irc/bip/Makefile | 8 | ||||
-rw-r--r-- | irc/bitchx/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/irc/bip/Makefile b/irc/bip/Makefile index 5cd1fa7a4057..690dffbc5636 100644 --- a/irc/bip/Makefile +++ b/irc/bip/Makefile @@ -45,4 +45,10 @@ post-install-EXAMPLES-on: ${INSTALL_DATA} ${WRKSRC}/samples/${i} ${STAGEDIR}${EXAMPLESDIR} .endfor -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${SSL_DEFAULT:Mopenssl-devel} +BROKEN= Does not build with openssl-devel +.endif + +.include <bsd.port.post.mk> diff --git a/irc/bitchx/Makefile b/irc/bitchx/Makefile index 352930985d6a..52ebd2a65436 100644 --- a/irc/bitchx/Makefile +++ b/irc/bitchx/Makefile @@ -74,4 +74,10 @@ post-patch: cd ${WRKSRC}/bitchx-docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PORT_OPTIONS:MSSL} && ${SSL_DEFAULT:Mopenssl-devel} +BROKEN= Does not build with openssl-devel +.endif + +.include <bsd.port.post.mk> |