From owner-svn-ports-head@freebsd.org Thu Mar 7 13:56:31 2019 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 DD6F615304B2; Thu, 7 Mar 2019 13:56:31 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 80B1287126; Thu, 7 Mar 2019 13:56:31 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 60C0A1B2F4; Thu, 7 Mar 2019 13:56:31 +0000 (UTC) Date: Thu, 7 Mar 2019 13:56:31 +0000 From: Alexey Dokuchaev To: Diane Bruce Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r494945 - in head/comms/wsjtx: . files Message-ID: <20190307135631.GA68662@FreeBSD.org> References: <201903071345.x27Dj4Gv030049@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201903071345.x27Dj4Gv030049@repo.freebsd.org> User-Agent: Mutt/1.10.1 (2018-07-13) X-Rspamd-Queue-Id: 80B1287126 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.88 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[]; NEURAL_HAM_SHORT(-0.88)[-0.879,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: Thu, 07 Mar 2019 13:56:32 -0000 On Thu, Mar 07, 2019 at 01:45:04PM +0000, Diane Bruce wrote: > New Revision: 494945 > URL: https://svnweb.freebsd.org/changeset/ports/494945 > > Log: > - update to 2.0.1 > - builds on i386 now > - remove MAKE_JOBS_UNSAFE When removing MAKE_JOBS_UNSAFE, it is expected to explain what was wrong before and why it is believed to be fixed now, otherwise the error might have simply not manifested itself. > this updated port. The cmake build provided does not have an > install/strip target which forces use of do-install. > ... > +do-install: > + (cd ${CONFIGURE_WRKSRC};${MAKE} -f Makefile DESTDIR=${STAGEDIR} install) This do-install target is very bogus (CONFIGURE_WRKSRC? ${MAKE}? whitespace bugs), but more importantly, why not patch CMakeLists.txt to provide a nice installation routine instead of this ugliness? > Added: > head/comms/wsjtx/files/hamlib.patch (contents, props changed) > head/comms/wsjtx/files/wsjtx.patch (contents, props changed) > ... > +post-patch: > + ${CP} ${FILESDIR}/wsjtx.patch ${WRKSRC} > + ${CP} ${FILESDIR}/hamlib.patch ${WRKSRC} Can't these be converted to normal patch-* files? ./danfe