svn commit: r569010 - head/sysutils/htop

Tobias Kortkamp tobik at FreeBSD.org
Tue Mar 23 08:00:14 UTC 2021


Author: tobik
Date: Tue Mar 23 08:00:13 2021
New Revision: 569010
URL: https://svnweb.freebsd.org/changeset/ports/569010

Log:
  sysutils/htop: Disable LSOF option by default
  
  This commit should ensure that we have a htop package for 13.0-RELEASE
  on non-x86 archs.  When sysutils/lsof fails to build (and that
  happens often enough) htop is skipped and we no longer have a package
  for it.  lsof is only used for htop's "list open files" view.
  
  PR:		252279

Modified:
  head/sysutils/htop/Makefile

Modified: head/sysutils/htop/Makefile
==============================================================================
--- head/sysutils/htop/Makefile	Tue Mar 23 07:35:13 2021	(r569009)
+++ head/sysutils/htop/Makefile	Tue Mar 23 08:00:13 2021	(r569010)
@@ -3,6 +3,7 @@
 
 PORTNAME=	htop
 DISTVERSION=	3.0.4
+PORTREVISION=	1
 CATEGORIES=	sysutils
 
 MAINTAINER=	gaod at hychen.org
@@ -26,8 +27,7 @@ PLIST_FILES=	bin/htop \
 		share/icons/hicolor/scalable/apps/htop.svg \
 		share/pixmaps/htop.png
 
-OPTIONS_DEFINE=		LSOF
-OPTIONS_DEFAULT=	LSOF
+OPTIONS_DEFINE=	LSOF
 
 LSOF_RUN_DEPENDS=	lsof:sysutils/lsof
 


More information about the svn-ports-head mailing list