1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00

- Allow "make package" as user

- Use BINMODE and DOCMODE
- Simplify Makefile
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2014-03-01 07:24:12 +00:00
parent 0c496cb7c3
commit 49a375037a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=346598

View File

@ -25,13 +25,8 @@ USES= gmake
NOT_FOR_ARCHS= powerpc
NOT_FOR_ARCHS_REASON= does not link
.include <bsd.port.pre.mk>
post-patch:
@${REINPLACE_CMD} -e 's|-lstdc++ ||g' ${WRKSRC}/configure ${WRKSRC}/doc/spex.html ${WRKSRC}/example/Makefile ${WRKSRC}/lab/kcdict/Makefile
.if !${PORT_OPTIONS:MDOCS}
@${REINPLACE_CMD} -e '/DOCDIR/d' ${WRKSRC}/Makefile.in
.endif
post-build:
@cd ${WRKSRC}/ && ${STRIP_CMD} libkyotocabinet.so.16.13.0 kccachetest \
@ -41,10 +36,7 @@ post-build:
kcutiltest
post-install:
.if ${PORT_OPTIONS:MDOCS}
${FIND} ${STAGEDIR}${DOCSDIR}/ -type d -exec ${CHMOD} 755 '{}' \;
${FIND} ${STAGEDIR}${DOCSDIR}/ -type f -exec ${CHMOD} 444 '{}' \;
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${DOCSDIR}/
.endif
${FIND} ${STAGEDIR}${DOCSDIR}/ -type d -exec ${CHMOD} ${BINMODE} '{}' \;
${FIND} ${STAGEDIR}${DOCSDIR}/ -type f -exec ${CHMOD} ${DOCMODE} '{}' \;
.include <bsd.port.post.mk>
.include <bsd.port.mk>