diff options
author | mat <mat@FreeBSD.org> | 2016-06-27 19:31:10 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-06-27 19:31:10 +0800 |
commit | 82a234f5c1d92aab301c663775859cfec043f06b (patch) | |
tree | 1b037def670694489104abae09b8b8337f0e5a08 /devel/p5-Event-RPC | |
parent | ce1eac9e2628f5b9255c5e38be1f9bf9c1183409 (diff) | |
download | freebsd-ports-graphics-82a234f5c1d92aab301c663775859cfec043f06b.tar.gz freebsd-ports-graphics-82a234f5c1d92aab301c663775859cfec043f06b.tar.zst freebsd-ports-graphics-82a234f5c1d92aab301c663775859cfec043f06b.zip |
Replace bsd.openssl.mk with USES=ssl
Add a qa hint about needing, or not, USES=ssl.
Fix ports doing silly things, like including bsd.openssl.mk directly.
PR: 210322
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D6866
Diffstat (limited to 'devel/p5-Event-RPC')
-rw-r--r-- | devel/p5-Event-RPC/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/devel/p5-Event-RPC/Makefile b/devel/p5-Event-RPC/Makefile index d79c121d387..5c4e5b66297 100644 --- a/devel/p5-Event-RPC/Makefile +++ b/devel/p5-Event-RPC/Makefile @@ -26,7 +26,6 @@ SSL_DESC= Dependency to SSL lib OPTIONS_DEFAULT= EVENT ANYEVENT SSL .include <bsd.port.options.mk> -.include <bsd.port.pre.mk> BUILD_DEPENDS= p5-Storable>=0:devel/p5-Storable @@ -43,11 +42,10 @@ BUILD_DEPENDS+= p5-Glib2>=0:devel/p5-Glib2 .endif .if ${PORT_OPTIONS:MSSL} -# we can't use USE_OPENSSL=yes after including bsd.port.pre.mk -.include "${PORTSDIR}/Mk/bsd.openssl.mk" +USES+= ssl BUILD_DEPENDS+= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL .endif RUN_DEPENDS:= ${BUILD_DEPENDS} -.include <bsd.port.post.mk> +.include <bsd.port.mk> |