Fix plist construction and silence portlint
PR: 61366 Submitted by: Matthias Andree <matthias.andree@gmx.de>
This commit is contained in:
parent
96b2fcceaf
commit
dac13a8172
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=98258
2 changed files with 5 additions and 6 deletions
|
@ -54,13 +54,13 @@ do-install:
|
|||
.endfor
|
||||
${LN} -sf unzip ${PREFIX}/bin/zipinfo
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/unix/zipgrep ${PREFIX}/bin
|
||||
.for file in ${MAN1}
|
||||
${INSTALL_MAN} ${WRKSRC}/man/${file} ${PREFIX}/man/man1
|
||||
.for f in ${MAN1}
|
||||
${INSTALL_MAN} ${WRKSRC}/man/${f} ${PREFIX}/man/man1
|
||||
.endfor
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${PREFIX}/share/doc/unzip
|
||||
.for file in README WHERE
|
||||
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/unzip
|
||||
.for f in README WHERE
|
||||
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/unzip
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
bin/unzip
|
||||
@exec ln -sf %f %B/zipinfo
|
||||
@unexec rm %D/bin/zipinfo 2>&1 >/dev/null || true
|
||||
bin/funzip
|
||||
bin/unzipsfx
|
||||
bin/zipgrep
|
||||
bin/zipinfo
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/WHERE
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||
|
|
Loading…
Reference in a new issue