svn commit: r568133 - head/net-p2p/monero-cli

Piotr Kubaj pkubaj at FreeBSD.org
Thu Mar 11 21:24:28 UTC 2021


Author: pkubaj
Date: Thu Mar 11 21:24:27 2021
New Revision: 568133
URL: https://svnweb.freebsd.org/changeset/ports/568133

Log:
  net-p2p/monero-cli: add libunwind for more architectures

Modified:
  head/net-p2p/monero-cli/Makefile

Modified: head/net-p2p/monero-cli/Makefile
==============================================================================
--- head/net-p2p/monero-cli/Makefile	Thu Mar 11 20:55:59 2021	(r568132)
+++ head/net-p2p/monero-cli/Makefile	Thu Mar 11 21:24:27 2021	(r568133)
@@ -4,6 +4,7 @@
 PORTNAME=	monero-cli
 # To build from an arbitrary git commit comment PORTVERSION and PORTREVISION (if present)
 PORTVERSION=	0.17.1.9
+PORTREVISION=	1
 DISTVERSIONPREFIX=	v
 # and uncomment the following two lines (use for example -git-HEAD or -git-b6420e1)
 #PORTVERSION=	0
@@ -80,7 +81,7 @@ CMAKE_ARGS+=	-DLD_RAW_FLAGS:STRING=-m${LD_EMULATION}
 .endif
 
 # keep in sync with all platforms where libunwind is available
-.if (${ARCH} == amd64 || ${ARCH} == i386)
+.if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == powerpc64 || ${ARCH} == powerpc64le
 LIB_DEPENDS+=	libunwind.so:devel/libunwind
 .else
 CMAKE_ARGS+=	-DSTACK_TRACE:BOOL=OFF


More information about the svn-ports-all mailing list