diff options
author | brnrd <brnrd@FreeBSD.org> | 2016-12-31 04:47:47 +0800 |
---|---|---|
committer | brnrd <brnrd@FreeBSD.org> | 2016-12-31 04:47:47 +0800 |
commit | 4c6fa0b04bf9f432e17ec87772e77f2a2ac017a0 (patch) | |
tree | 3dce02fac78703f3374004af15616e74a86e6a5a /security | |
parent | b80abef02e0d0856b85ce55531eb558acc93d824 (diff) | |
download | freebsd-ports-gnome-4c6fa0b04bf9f432e17ec87772e77f2a2ac017a0.tar.gz freebsd-ports-gnome-4c6fa0b04bf9f432e17ec87772e77f2a2ac017a0.tar.zst freebsd-ports-gnome-4c6fa0b04bf9f432e17ec87772e77f2a2ac017a0.zip |
security/acme-client: Update to 0.1.15
- Update to 0.1.15
- Remove STATIC_ACMECLIENT option
- stage-build LibreSSL when not SSL_DEFAULT
PR: 213695
Submitted by: jbeich
Diffstat (limited to 'security')
-rw-r--r-- | security/acme-client/Makefile | 34 | ||||
-rw-r--r-- | security/acme-client/distinfo | 6 |
2 files changed, 23 insertions, 17 deletions
diff --git a/security/acme-client/Makefile b/security/acme-client/Makefile index fbc164846394..3a297b8e1d5b 100644 --- a/security/acme-client/Makefile +++ b/security/acme-client/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= acme-client -PORTVERSION= 0.1.14 +PORTVERSION= 0.1.15 DISTVERSIONPREFIX= portable- CATEGORIES= security MASTER_SITES= https://kristaps.bsd.lv/${PORTNAME}/snapshots/ \ @@ -15,13 +15,6 @@ LICENSE= ISCL USES= gmake tar:tgz -OPTIONS_DEFINE= STATIC_ACMECLIENT -STATIC_ACMECLIENT_DESC= Link statically with security/libressl - -STATIC_ACMECLIENT_USES_OFF= ssl -STATIC_ACMECLIENT_BUILD_DEPENDS= ${LOCALBASE}/lib/libtls.a:security/libressl -STATIC_ACMECLIENT_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-GNUmakefile - MAKEFILE= GNUmakefile MAKE_ENV= PREFIX=${STAGEDIR}/${PREFIX} @@ -53,11 +46,24 @@ post-install: .include <bsd.port.pre.mk> -.if ${PORT_OPTIONS:MSTATIC_ACMECLIENT} == "" && empty(SSL_DEFAULT:M*libressl*) -IGNORE= needs LibreSSL to build. set DEFAULT_VERSIONS+=ssl=libressl \ - and rebuild all ports that depend on openssl -.else -WARNING= "Remember to deinstall libressl after building acme-client" -.endif +.if ! ${SSL_DEFAULT:Mlibressl*} +BUILD_DEPENDS+= ${NONEXISTENT}:security/libressl:stage +CPPFLAGS+= -I${WRKDIR}/libressl/include +LDFLAGS+= -L${WRKDIR}/libressl/lib +. ifnmake describe +STAGEDIR_libressl!= ${MAKE} -V STAGEDIR -C ${PORTSDIR}/security/libressl +. endif +# security/libressl ignores implicit SSP_UNSAFE, see Mk/bsd.ssp.mk +. if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000036 && ${ARCH} == i386 +SSP_CFLAGS?= -fstack-protector +CFLAGS+= ${SSP_CFLAGS} +LDFLAGS+= -fstack-protector +LIBS+= -lssp_nonshared +. endif + +pre-configure: + @(cd ${STAGEDIR_libressl}${LOCALBASE} && ${COPYTREE_SHARE} \ + . ${WRKDIR}/libressl "! -name *.so*") +.endif # SSL_DEFAULT .include <bsd.port.post.mk> diff --git a/security/acme-client/distinfo b/security/acme-client/distinfo index 9e57bfe04468..34bdcbc2462e 100644 --- a/security/acme-client/distinfo +++ b/security/acme-client/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1478171483 -SHA256 (acme-client-portable-0.1.14.tgz) = 14aa753f65e3d2ca36a8b97d68fe36205f935eaf735b7bf6a8c5d81bc8ec04e3 -SIZE (acme-client-portable-0.1.14.tgz) = 49238 +TIMESTAMP = 1483123856 +SHA256 (acme-client-portable-0.1.15.tgz) = 910f4ffab4aea2dc9563405aa6a53e85d00166a020c74c28d719f290c610e71e +SIZE (acme-client-portable-0.1.15.tgz) = 51986 |