Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 May 2020 21:42:14 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r536721 - head/deskutils/cfiles
Message-ID:  <202005272142.04RLgE6T084745@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Wed May 27 21:42:14 2020
New Revision: 536721
URL: https://svnweb.freebsd.org/changeset/ports/536721

Log:
  deskutils/cfiles: Make runtime dependency on textproc/fzf depend on the hard-coded golang ARCH availability
  
  PR:		243616

Modified:
  head/deskutils/cfiles/Makefile

Modified: head/deskutils/cfiles/Makefile
==============================================================================
--- head/deskutils/cfiles/Makefile	Wed May 27 21:09:28 2020	(r536720)
+++ head/deskutils/cfiles/Makefile	Wed May 27 21:42:14 2020	(r536721)
@@ -4,7 +4,7 @@ PORTNAME=	cfiles
 DISTVERSIONPREFIX=	v
 DISTVERSION=	1.8-6
 DISTVERSIONSUFFIX=	-g327d47f
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	deskutils
 
 MAINTAINER=	yuri@FreeBSD.org
@@ -55,7 +55,9 @@ do-install:
 
 .include <bsd.port.pre.mk>
 
-.if ${ARCH} != "powerpc" # textproc/fzf isn't available on powerpc because go isn't available there
+GOLANG_ONLY_FOR_ARCHS=	aarch64 amd64 armv6 armv7 i386
+
+.if ${GOLANG_ONLY_FOR_ARCHS:M${ARCH}} # textproc/fzf isn't available on powerpc because go isn't available there
 RUN_DEPENDS+=	fzf:textproc/fzf
 .endif
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005272142.04RLgE6T084745>