svn commit: r509509 - head/security/acme.sh

Dan Langille dvl at FreeBSD.org
Wed Aug 21 15:28:26 UTC 2019


Author: dvl
Date: Wed Aug 21 15:28:25 2019
New Revision: 509509
URL: https://svnweb.freebsd.org/changeset/ports/509509

Log:
  Fix build for IDN when not using BINDTOOLS by correcting the RUN_DEPENDS:
  
  Remove: idn2:dns/idnkit2
  Add:    idn2:dns/libidn2
  
  I believe this is a case of incorrect RUN_DEPENDS.
  
  The problem does not appear when using BINDTOOLS because that option pulls
  in libidn2 via dns/bind-tools
  
  Reported by:	Russian <russian at russerver.org>
  MFH:		2019Q3

Modified:
  head/security/acme.sh/Makefile

Modified: head/security/acme.sh/Makefile
==============================================================================
--- head/security/acme.sh/Makefile	Wed Aug 21 14:53:04 2019	(r509508)
+++ head/security/acme.sh/Makefile	Wed Aug 21 15:28:25 2019	(r509509)
@@ -22,7 +22,7 @@ OPTIONS_SINGLE_HTTP=	CURL WGET
 OPTIONS_DEFAULT=	CURL STANDALONE
 BINDTOOLS_DESC=	Depend on bind-tools for nsupdate
 BINDTOOLS_RUN_DEPENDS=	nsupdate:dns/bind-tools
-IDN_RUN_DEPENDS=	idn2:dns/idnkit2
+IDN_RUN_DEPENDS=	idn2:dns/libidn2
 STANDALONE_DESC=	Standalone mode requires SOCAT
 STANDALONE_RUN_DEPENDS=	socat>0:net/socat
 


More information about the svn-ports-all mailing list