svn commit: r460552 - head/sysutils/hpacucli

Mark Linimon linimon at FreeBSD.org
Thu Feb 1 05:28:22 UTC 2018


Author: linimon
Date: Thu Feb  1 05:28:21 2018
New Revision: 460552
URL: https://svnweb.freebsd.org/changeset/ports/460552

Log:
  Mark as x86-specific.
  
  The error that I was seeing was:
  
    sysutils/hpacucli dependency on misc/compat4x has wrong PKGNAME of
    'compat4x-i386' but should be 'compat4x-armv7'
  
  This port dates from an era so long ago that the assumption was that
  "32-bit" => "i386".  I would be very surprised if any of this antique
  code was still in use; it is certainly irrelevant for 32-bit arm.

Modified:
  head/sysutils/hpacucli/Makefile

Modified: head/sysutils/hpacucli/Makefile
==============================================================================
--- head/sysutils/hpacucli/Makefile	Thu Feb  1 02:56:52 2018	(r460551)
+++ head/sysutils/hpacucli/Makefile	Thu Feb  1 05:28:21 2018	(r460552)
@@ -10,6 +10,9 @@ MASTER_SITES=	LOCAL/brooks
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	HP configuration utility for Smart Array RAID cards
 
+ONLY_FOR_ARCHS=		amd64 i386
+ONLY_FOR_ARCHS_REASON=	relies on compatXx features that are x86-specific
+
 RUN_DEPENDS=	compat4x-i386>0:misc/compat4x \
 		compat5x-${ARCH}>0:misc/compat5x
 


More information about the svn-ports-head mailing list