Date: Wed, 21 Aug 2019 15:28:25 +0000 (UTC) From: Dan Langille <dvl@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r509509 - head/security/acme.sh Message-ID: <201908211528.x7LFSP5V057307@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908211528.x7LFSP5V057307>