From owner-svn-ports-head@freebsd.org Tue Mar 23 08:00:14 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A83B957DAE8; Tue, 23 Mar 2021 08:00:14 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F4P1B41FNz4SrW; Tue, 23 Mar 2021 08:00:14 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 669E91D05A; Tue, 23 Mar 2021 08:00:14 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12N80Eiu022655; Tue, 23 Mar 2021 08:00:14 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12N80EPi022654; Tue, 23 Mar 2021 08:00:14 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <202103230800.12N80EPi022654@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 23 Mar 2021 08:00:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r569010 - head/sysutils/htop X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/sysutils/htop X-SVN-Commit-Revision: 569010 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Mar 2021 08:00:14 -0000 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@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