diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2016-12-26 16:45:43 +0000 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2016-12-26 16:45:43 +0000 |
commit | 811b6d7f42efe724d2db071bdfe8db968ed20598 (patch) | |
tree | 57370d3fc45b5d1a3967f32c917e5f82580ab1fd | |
parent | 6d66e387b95980a631af03ea60f8e09dcac792f9 (diff) | |
download | FreeBSD-ports-811b6d7f42efe724d2db071bdfe8db968ed20598.zip FreeBSD-ports-811b6d7f42efe724d2db071bdfe8db968ed20598.tar.gz |
- Fix typo
- Convert to options target helper
Approved by: portmgr (blanket)
-rw-r--r-- | archivers/zip/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archivers/zip/Makefile b/archivers/zip/Makefile index 7aa8cc4..89368f3 100644 --- a/archivers/zip/Makefile +++ b/archivers/zip/Makefile @@ -11,7 +11,7 @@ DISTNAME= ${PORTNAME}${PORTVERSION:S/.//g} MAINTAINER= ler@lerctr.org COMMENT= Create/update ZIP files compatible with PKZIP -# License is BSD-based, but not identical, so intall with documentation +# License is BSD-based, but not identical, so install with documentation LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE @@ -30,6 +30,8 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${p} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/man/${p}.1 ${STAGEDIR}${MANPREFIX}/man/man1 .endfor + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/ && ${INSTALL_DATA} CHANGES README* TODO WHATSNEW WHERE ${STAGEDIR}${DOCSDIR} |