diff options
-rw-r--r-- | benchmarks/super-smack/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/benchmarks/super-smack/Makefile b/benchmarks/super-smack/Makefile index dc2ef20e6f46..5617f98b6bfe 100644 --- a/benchmarks/super-smack/Makefile +++ b/benchmarks/super-smack/Makefile @@ -7,6 +7,7 @@ PORTNAME= super-smack PORTVERSION= 1.3 +PORTREVISION= 1 CATEGORIES= benchmarks databases MASTER_SITES= http://vegan.net/tony/supersmack/ @@ -16,6 +17,8 @@ COMMENT= A benchmarking, stress testing, and load generation tool for Databases GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-smacks-dir=${DATADIR} +PORTDOCS= README TUTORIAL + OPTIONS= MYSQL "Enable MySQL support" on \ POSTGRESQL "Enable PostgreSQL support" off @@ -31,4 +34,12 @@ USE_PGSQL= yes CONFIGURE_ARGS+= --with-pgsql .endif +.if !defined(NOPORTDOCS) +post-install: + ${MKDIR} ${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +.endfor +.endif + .include <bsd.port.post.mk> |