From owner-svn-ports-all@FreeBSD.ORG Sat Nov 22 01:41:59 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 58BF5DEF; Sat, 22 Nov 2014 01:41:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 458CBAAE; Sat, 22 Nov 2014 01:41:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAM1fx6B070921; Sat, 22 Nov 2014 01:41:59 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAM1fxUK070920; Sat, 22 Nov 2014 01:41:59 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201411220141.sAM1fxUK070920@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 22 Nov 2014 01:41:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373025 - head/Mk X-SVN-Group: ports-head 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.18-1 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: Sat, 22 Nov 2014 01:41:59 -0000 Author: bapt Date: Sat Nov 22 01:41:58 2014 New Revision: 373025 URL: https://svnweb.freebsd.org/changeset/ports/373025 QAT: https://qat.redports.org/buildarchive/r373025/ Log: Define SOELIM If base have the new soeliminate(1) then use it first otherwise fallback on groff's soelim Modified: head/Mk/bsd.commands.mk Modified: head/Mk/bsd.commands.mk ============================================================================== --- head/Mk/bsd.commands.mk Sat Nov 22 00:34:21 2014 (r373024) +++ head/Mk/bsd.commands.mk Sat Nov 22 01:41:58 2014 (r373025) @@ -104,6 +104,11 @@ XZ_CMD?= /usr/bin/xz ${XZ} MD5?= /sbin/md5 SHA256?= /sbin/sha256 +.if exist(/usr/bin/soeliminate) +SOELIM?= /usr/bin/soeliminate +.else +SOELIM?= /usr/bin/soelim +.endif # ECHO is defined in /usr/share/mk/sys.mk, which can either be "echo", # or "true" if the make flag -s is given. Use ECHO_CMD where you mean