From owner-svn-ports-head@freebsd.org Fri Dec 14 08:44:30 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 695821325812; Fri, 14 Dec 2018 08:44:30 +0000 (UTC) (envelope-from koobs@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 0D66C934C6; Fri, 14 Dec 2018 08:44:30 +0000 (UTC) (envelope-from koobs@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 01B052CDB0; Fri, 14 Dec 2018 08:44:30 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wBE8iTtX009041; Fri, 14 Dec 2018 08:44:29 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBE8iT29009040; Fri, 14 Dec 2018 08:44:29 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201812140844.wBE8iT29009040@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Fri, 14 Dec 2018 08:44:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487412 - head/archivers/upx X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: head/archivers/upx X-SVN-Commit-Revision: 487412 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0D66C934C6 X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-1.57 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-0.86)[-0.855,0]; NEURAL_HAM_SHORT(-0.72)[-0.715,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Fri, 14 Dec 2018 08:44:30 -0000 Author: koobs Date: Fri Dec 14 08:44:29 2018 New Revision: 487412 URL: https://svnweb.freebsd.org/changeset/ports/487412 Log: archivers/upx: Fix build due to missing perl (pod2*) tools upx unconditionally runs its docs target, which relies on multiple [1] pod2* tools provided by perl. USES=perl and USE_PERL=build were removed in ports r478489, resulting in those tools not being available at build time, and the following errors: /bin/sh: pod2man: not found /bin/sh: pod2html: not found /bin/sh: pod2text: not found This change, accordingly, re-adds perl as an unconditional build dependency, including a comment about what its for. While I'm here: * Update COMMENT for (portlint) compliance [2] [1] pod2man, pod2html, pod2text [2] Wikipedia, MajorGeeks and others also describe UPX without a "The" prefix PR: 234002 Reported by: Approved by: portmgr (blanket: build fix, JFI) MFH: 2018Q4 Differential Revision: D18549 Modified: head/archivers/upx/Makefile Modified: head/archivers/upx/Makefile ============================================================================== --- head/archivers/upx/Makefile Fri Dec 14 08:13:20 2018 (r487411) +++ head/archivers/upx/Makefile Fri Dec 14 08:44:29 2018 (r487412) @@ -7,15 +7,17 @@ DISTVERSION= 3.95 CATEGORIES= archivers MAINTAINER= fjoe@FreeBSD.org -COMMENT= The Ultimate Packer for eXecutables +COMMENT= Ultimate Packer for eXecutables LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libucl.so:archivers/ucl -USES= gmake +USES= gmake perl5 USE_GITHUB= yes +USE_PERL5= build # provides pod2man/pod2html/pod2text required for docs + GH_TUPLE= upx:upx-lzma-sdk:${DISTVERSIONPREFIX}${DISTVERSION}:lzma/src/lzma-sdk MAKE_ENV= UPX_UCLDIR=${LOCALBASE} \