diff options
author | mat <mat@FreeBSD.org> | 2016-11-30 02:46:21 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-11-30 02:46:21 +0800 |
commit | a9fb43731f13f4ddbe4e900c6673e591c40399db (patch) | |
tree | 81e5478fa11645e21ab75a8faa039b5e6d1918c5 /archivers | |
parent | 5f6167ba55ac06f0aca86e787e405f1b39aa5d1d (diff) | |
download | freebsd-ports-gnome-a9fb43731f13f4ddbe4e900c6673e591c40399db.tar.gz freebsd-ports-gnome-a9fb43731f13f4ddbe4e900c6673e591c40399db.tar.zst freebsd-ports-gnome-a9fb43731f13f4ddbe4e900c6673e591c40399db.zip |
Mark some ports as not openssl-devel ready.
Sponsored by: Absolight
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/libarchive/Makefile | 4 | ||||
-rw-r--r-- | archivers/unrar/Makefile | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/archivers/libarchive/Makefile b/archivers/libarchive/Makefile index 1143786ca2c7..d9d0c3cdf8f4 100644 --- a/archivers/libarchive/Makefile +++ b/archivers/libarchive/Makefile @@ -98,6 +98,10 @@ NETTLE_CONFIGURE_OFF= --with-openssl .include <bsd.port.pre.mk> +.if ${SSL_DEFAULT:Mopenssl-devel} +BROKEN= Does not build with openssl-devel +.endif + .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1002504 CONFIGURE_ENV+= ac_cv_lzma_has_mt=no .endif diff --git a/archivers/unrar/Makefile b/archivers/unrar/Makefile index 86f154060929..5a98edc807bf 100644 --- a/archivers/unrar/Makefile +++ b/archivers/unrar/Makefile @@ -38,4 +38,10 @@ do-install: ${MKDIR} ${STAGEDIR}${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ -.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> |