From owner-svn-ports-all@freebsd.org Thu Aug 29 15:05:58 2019 Return-Path: Delivered-To: svn-ports-all@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 9F2C9D8A47; Thu, 29 Aug 2019 15:05:58 +0000 (UTC) (envelope-from 0mp@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) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46K5XQ3SLhz3JSk; Thu, 29 Aug 2019 15:05:58 +0000 (UTC) (envelope-from 0mp@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 584D621AC4; Thu, 29 Aug 2019 15:05:58 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7TF5wiL036069; Thu, 29 Aug 2019 15:05:58 GMT (envelope-from 0mp@FreeBSD.org) Received: (from 0mp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7TF5wfB036067; Thu, 29 Aug 2019 15:05:58 GMT (envelope-from 0mp@FreeBSD.org) Message-Id: <201908291505.x7TF5wfB036067@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: 0mp set sender to 0mp@FreeBSD.org using -f From: Mateusz Piotrowski <0mp@FreeBSD.org> Date: Thu, 29 Aug 2019 15:05:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r510168 - head/sysutils/vmdktool X-SVN-Group: ports-head X-SVN-Commit-Author: 0mp X-SVN-Commit-Paths: head/sysutils/vmdktool X-SVN-Commit-Revision: 510168 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Aug 2019 15:05:58 -0000 Author: 0mp Date: Thu Aug 29 15:05:57 2019 New Revision: 510168 URL: https://svnweb.freebsd.org/changeset/ports/510168 Log: sysutils/vmdktool: Set TEST_TARGET and WWW, and fix ALL_TARGET - Set TEST_TARGET. We need a utility called prove that comes with Perl 5 so set USES=perl5 as well. - Set ALL_TARGET to vmdktool. The default one, all, attempts to build vmdktool.8.gz using Groff. Since the final vmdktool.8.gz is never not installed anyway (the install target always installs the original vmdktool.8), it is better to just change the ALL_TARGET to vmdktool directly. This way we do not add dependencies to the build phase. - Set WWW to give users at least some information, even though the project does not have its official homepage. Reviewed by: garga Approved by: maintainer (garga) Differential Revision: https://reviews.freebsd.org/D21464 Modified: head/sysutils/vmdktool/Makefile head/sysutils/vmdktool/pkg-descr Modified: head/sysutils/vmdktool/Makefile ============================================================================== --- head/sysutils/vmdktool/Makefile Thu Aug 29 14:59:33 2019 (r510167) +++ head/sysutils/vmdktool/Makefile Thu Aug 29 15:05:57 2019 (r510168) @@ -13,7 +13,14 @@ COMMENT= Convert VMDK files to/from raw disk images LICENSE= BSD2CLAUSE +USES= perl5 +# We need the prove utility from Perl 5. +USE_PERL5= test + PLIST_FILES= bin/vmdktool \ man/man8/vmdktool.8.gz + +ALL_TARGET= vmdktool +TEST_TARGET= test .include Modified: head/sysutils/vmdktool/pkg-descr ============================================================================== --- head/sysutils/vmdktool/pkg-descr Thu Aug 29 14:59:33 2019 (r510167) +++ head/sysutils/vmdktool/pkg-descr Thu Aug 29 15:05:57 2019 (r510168) @@ -8,3 +8,5 @@ VMDK files as the initial filesystem images for the cr vmdktool is free. Contact the author with any questions or comments. + +WWW: http://www.awfulhak.org/vmdktool