Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Jan 2019 19:21:51 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r491643 - head/databases/kyotocabinet
Message-ID:  <201901301921.x0UJLp8q016562@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Wed Jan 30 19:21:51 2019
New Revision: 491643
URL: https://svnweb.freebsd.org/changeset/ports/491643

Log:
  Convert to options target helper

Modified:
  head/databases/kyotocabinet/Makefile

Modified: head/databases/kyotocabinet/Makefile
==============================================================================
--- head/databases/kyotocabinet/Makefile	Wed Jan 30 19:21:46 2019	(r491642)
+++ head/databases/kyotocabinet/Makefile	Wed Jan 30 19:21:51 2019	(r491643)
@@ -33,7 +33,9 @@ post-patch:
 
 post-install:
 	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libkyotocabinet.so.16.13.0
-	${FIND} ${STAGEDIR}${DOCSDIR}/ -type d -exec ${CHMOD} ${BINMODE} {} \;
-	${FIND} ${STAGEDIR}${DOCSDIR}/ -type f -exec ${CHMOD} ${DOCMODE} {} \;
+
+post-install-DOCS-on:
+	${FIND} ${STAGEDIR}${DOCSDIR}/ -type d -exec ${CHMOD} ${BINMODE} {} +
+	${FIND} ${STAGEDIR}${DOCSDIR}/ -type f -exec ${CHMOD} ${DOCMODE} {} +
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901301921.x0UJLp8q016562>