diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2014-03-01 15:24:16 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2014-03-01 15:24:16 +0800 |
commit | 80ddaec882d0021e45f520a699c31acd43143cd2 (patch) | |
tree | 356c9aecb46291c387724af5531218bca03e9972 /databases | |
parent | 15549a4033619219f22a9e16ce417b5431f7ca63 (diff) | |
download | freebsd-ports-gnome-80ddaec882d0021e45f520a699c31acd43143cd2.tar.gz freebsd-ports-gnome-80ddaec882d0021e45f520a699c31acd43143cd2.tar.zst freebsd-ports-gnome-80ddaec882d0021e45f520a699c31acd43143cd2.zip |
- Use BINMODE and DOCMODE
- Simplify Makefile
Diffstat (limited to 'databases')
-rw-r--r-- | databases/kyototycoon/Makefile | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/databases/kyototycoon/Makefile b/databases/kyototycoon/Makefile index 7a08213fe2d6..c408479780af 100644 --- a/databases/kyototycoon/Makefile +++ b/databases/kyototycoon/Makefile @@ -25,13 +25,8 @@ REINPLACE_ARGS= -i '' USE_LDCONFIG= yes USES= gmake pkgconfig -.include <bsd.port.pre.mk> - post-patch: @${REINPLACE_CMD} -e 's|-lpthread|-pthread|g; s|-lstdc++ ||g' ${WRKSRC}/configure ${WRKSRC}/doc/spex.html ${WRKSRC}/example/Makefile -.if !${PORT_OPTIONS:MDOCS} - @${REINPLACE_CMD} -e '/DOCDIR/d' ${WRKSRC}/Makefile.in -.endif post-build: @cd ${WRKSRC}/ && ${STRIP_CMD} ktplugdbvoid.so ktplugservmemc.so \ @@ -39,12 +34,10 @@ post-build: ktutilmgr ktutilserv ktutiltest post-install: -.if ${PORT_OPTIONS:MDOCS} - ${FIND} ${STAGEDIR}${DOCSDIR}/ -type d -exec ${CHMOD} 755 '{}' \; - ${FIND} ${STAGEDIR}${DOCSDIR}/ -type f -exec ${CHMOD} 444 '{}' \; -.endif + ${FIND} ${STAGEDIR}${DOCSDIR}/ -type d -exec ${CHMOD} ${BINMODE} '{}' \; + ${FIND} ${STAGEDIR}${DOCSDIR}/ -type f -exec ${CHMOD} ${DOCMODE} '{}' \; regression-test test: build cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE} check -.include <bsd.port.post.mk> +.include <bsd.port.mk> |