1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-21 08:42:23 +00:00

Support staging

This commit is contained in:
Emanuel Haupt 2014-02-25 13:31:49 +00:00
parent 1ea7b8e6da
commit 1ffaa567ff
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=345994

View File

@ -12,7 +12,8 @@ COMMENT= A small STDIN-to-file logger with support for log rotation
PORTDOCS= README
NO_STAGE= yes
OPTIONS_DEFINE= DOCS
post-patch:
${REINPLACE_CMD} -e "s@|O_LARGEFILE@@" ${WRKSRC}/flog.c
@ -20,10 +21,8 @@ do-build:
${CC} ${CFLAGS} -o ${WRKSRC}/flog ${WRKSRC}/flog.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/flog ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${INSTALL} -d -m 0755 ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
${INSTALL_PROGRAM} ${WRKSRC}/flog ${STAGEDIR}${PREFIX}/bin
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>