svn commit: r458749 - head/sysutils/xstow

Alexey Dokuchaev danfe at FreeBSD.org
Thu Jan 11 15:24:18 UTC 2018


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 at 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 <bsd.port.mk>


More information about the svn-ports-all mailing list