From owner-svn-ports-head@freebsd.org Mon Dec 25 04:45:34 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0FA3BE9D310; Mon, 25 Dec 2017 04:45:34 +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 mx1.freebsd.org (Postfix) with ESMTPS id D02C576111; Mon, 25 Dec 2017 04:45:33 +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 vBP4jWCn076516; Mon, 25 Dec 2017 04:45:32 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBP4jWNm076514; Mon, 25 Dec 2017 04:45:32 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201712250445.vBP4jWNm076514@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 25 Dec 2017 04:45:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457204 - head/sysutils/htop X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/sysutils/htop X-SVN-Commit-Revision: 457204 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.25 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: Mon, 25 Dec 2017 04:45:34 -0000 Author: tobik Date: Mon Dec 25 04:45:32 2017 New Revision: 457204 URL: https://svnweb.freebsd.org/changeset/ports/457204 Log: sysutils/htop: Add a new default LSOF option htop only requires lsof for its open files view. Move the lsof run dependency to an option so that it can be removed by users. While here - Add LICENSE_FILE - Follow http://htop.sourceforge.net/ redirect to http://hisham.hm/htop/ and update WWW PR: 224241 Approved by: gaod@hychen.org (maintainer timeout, 2 weeks) Modified: head/sysutils/htop/Makefile head/sysutils/htop/pkg-descr Modified: head/sysutils/htop/Makefile ============================================================================== --- head/sysutils/htop/Makefile Mon Dec 25 01:38:38 2017 (r457203) +++ head/sysutils/htop/Makefile Mon Dec 25 04:45:32 2017 (r457204) @@ -9,9 +9,8 @@ MAINTAINER= gaod@hychen.org COMMENT= Better top(1) - interactive process viewer LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= lsof:sysutils/lsof - GNU_CONFIGURE= yes LIBS+= -lexecinfo @@ -23,5 +22,10 @@ PLIST_FILES= bin/htop \ man/man1/htop.1.gz \ share/applications/htop.desktop \ share/pixmaps/htop.png + +OPTIONS_DEFINE= LSOF +OPTIONS_DEFAULT= LSOF + +LSOF_RUN_DEPENDS= lsof:sysutils/lsof .include Modified: head/sysutils/htop/pkg-descr ============================================================================== --- head/sysutils/htop/pkg-descr Mon Dec 25 01:38:38 2017 (r457203) +++ head/sysutils/htop/pkg-descr Mon Dec 25 04:45:32 2017 (r457204) @@ -17,4 +17,4 @@ Comparison between 'htop' and 'top' * In 'htop' you can kill multiple processes at once. * 'top' is older, hence, more tested. -WWW: http://htop.sourceforge.net/ +WWW: http://hisham.hm/htop/