From owner-svn-ports-all@freebsd.org Thu Jan 11 15:24:17 2018 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 DFDACE69603; Thu, 11 Jan 2018 15:24:17 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BC2A37605E; Thu, 11 Jan 2018 15:24:17 +0000 (UTC) (envelope-from danfe@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 20ADD16BC3; Thu, 11 Jan 2018 15:24:17 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0BFOGPo084095; Thu, 11 Jan 2018 15:24:17 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0BFOGPn084094; Thu, 11 Jan 2018 15:24:16 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201801111524.w0BFOGPn084094@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Thu, 11 Jan 2018 15:24:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458749 - head/sysutils/xstow X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/sysutils/xstow X-SVN-Commit-Revision: 458749 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.25 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, 11 Jan 2018 15:24:18 -0000 Author: danfe Date: Thu Jan 11 15:24:16 2018 New Revision: 458749 URL: https://svnweb.freebsd.org/changeset/ports/458749 Log: - Don't install boilerplate COPYING file as part of documentation, define LICENSE instead (GPLv2) - Wrap two overly long lines, properly indent USES - Use option helper target for installing documentation, and INSTALL_DATA to install plain text files which are not actually real manual pages Modified: head/sysutils/xstow/Makefile Modified: head/sysutils/xstow/Makefile ============================================================================== --- head/sysutils/xstow/Makefile Thu Jan 11 15:21:07 2018 (r458748) +++ head/sysutils/xstow/Makefile Thu Jan 11 15:24:16 2018 (r458749) @@ -9,7 +9,9 @@ MASTER_SITES= SF/${PORTNAME}/ MAINTAINER= rakuco@FreeBSD.org COMMENT= Enhanced replacement for GNU stow written in C++ -USES= tar:bzip2 +LICENSE= GPLv2 + +USES= tar:bzip2 GNU_CONFIGURE= yes .if defined(WITH_DEBUG) @@ -19,12 +21,13 @@ CONFIGURE_ARGS+= --enable-debug PLIST_FILES= bin/merge-info bin/xstow \ man/man1/merge-info.1.gz man/man1/xstow.1.gz \ man/man5/xstow.ini.5.gz -PORTDOCS= AUTHORS COPYING ChangeLog NEWS README TODO xstow.html xstow.ini xstow.ini.html +PORTDOCS= AUTHORS ChangeLog NEWS README TODO xstow.html \ + xstow.ini xstow.ini.html OPTIONS_DEFINE= DOCS -post-install: - (cd ${WRKSRC} && \ - ${INSTALL_MAN} AUTHORS COPYING ChangeLog NEWS README TODO ${STAGEDIR}${DOCSDIR}) +post-install-DOCS-on: + ${INSTALL_DATA} ${PORTDOCS:M[ACNRT]*:S|^|${WRKSRC}/|} \ + ${STAGEDIR}${DOCSDIR} .include