From owner-svn-ports-all@freebsd.org Mon Oct 16 07:26:10 2017 Return-Path: Delivered-To: svn-ports-all@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 35DEEE31D5D; Mon, 16 Oct 2017 07:26:10 +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 mx1.freebsd.org (Postfix) with ESMTPS id 0390370A82; Mon, 16 Oct 2017 07:26:09 +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 v9G7Q9Ld074894; Mon, 16 Oct 2017 07:26:09 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9G7Q9QV074893; Mon, 16 Oct 2017 07:26:09 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201710160726.v9G7Q9QV074893@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 16 Oct 2017 07:26:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r452177 - head/security/openssh-portable X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: head/security/openssh-portable X-SVN-Commit-Revision: 452177 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.23 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: Mon, 16 Oct 2017 07:26:10 -0000 Author: koobs Date: Mon Oct 16 07:26:08 2017 New Revision: 452177 URL: https://svnweb.freebsd.org/changeset/ports/452177 Log: security/openssh-portable: Remove groff dependency An unconditional dependency on groff was added in ports r441907 [1] as part of bug 213725 (groff removal from base). OpenSSH release-5.7 notes the following: * Use mandoc as preferred manpage formatter if it is present, followed by nroff and groff respectively. This change removes groff as an unconditional dependency allowing mandoc to be used, and reduces many subsequence dependencies accordingly. It additionally explicitly sets 'mantype', which ensures that man pages are installed in the same location (LOCALBASE/man) independently from the generator used. Without this, a packaging (pkg-plist) error is observed (installing man pages into LOCALBASE/doc not LOCALBASE/man), which was presumably the genesis of the groff dependency addition in the first place. [1] http://svnweb.freebsd.org/changeset/ports/441907 Reviewed by: bdrewery (maintainer), allanjude Approved by: bdrewery (maintainer) Differential Revision: D11793 Modified: head/security/openssh-portable/Makefile Modified: head/security/openssh-portable/Makefile ============================================================================== --- head/security/openssh-portable/Makefile Mon Oct 16 06:44:39 2017 (r452176) +++ head/security/openssh-portable/Makefile Mon Oct 16 07:26:08 2017 (r452177) @@ -3,7 +3,7 @@ PORTNAME= openssh DISTVERSION= 7.6p1 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= security ipv6 MASTER_SITES= OPENBSD/OpenSSH/portable @@ -17,11 +17,13 @@ COMMENT= The portable version of OpenBSD's OpenSSH CONFLICTS?= openssh-3.* ssh-1.* ssh2-3.* openssh-portable-devel-* -USES= alias autoreconf groff ncurses ssl +USES= alias autoreconf ncurses ssl GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_func_strnvis=no CONFIGURE_ARGS= --prefix=${PREFIX} --with-md5-passwords \ - --without-zlib-version-check --with-ssl-engine + --without-zlib-version-check --with-ssl-engine \ + --with-mantype=man + ETCOLD= ${PREFIX}/etc BROKEN_SSL= openssl-devel libressl