1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

Fix plist with -DNOPORTDOCS

Prompted by:	QAT QA run
Approved by:	maintainer timeout on QATMail
This commit is contained in:
Ion-Mihai Tetcu 2009-04-05 16:21:06 +00:00
parent 444922452b
commit f2365b443f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=231647

View File

@ -17,9 +17,12 @@ COMMENT= Compressed loop FS utils
WRKSRC= ${WRKDIR}/cloop-${CLOOP_VERSION}
USE_GMAKE= yes
MAKE_ENV= APPSONLY=yes
PORTDOCS= README
PLIST_FILES= bin/create_compressed_fs bin/extract_compressed_fs
.ifndef NOPORTDOCS
PORTDOCS= README
.endif
CLOOP_VERSION= 2.01
CLOOP_REVISION= 2
@ -29,7 +32,9 @@ post-patch:
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/create_compressed_fs ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/extract_compressed_fs ${PREFIX}/bin
.ifndef NOPORTDOCS
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>