Add super-smack 1.3, a benchmarking, stress testing, and load generation
tool for Databases. PR: ports/90209 Submitted by: Gea-Suan Lin <gslin@ccca.nctu.edu.tw>
This commit is contained in:
parent
f610cb41ec
commit
bf4c920052
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=150866
5 changed files with 48 additions and 0 deletions
|
@ -42,6 +42,7 @@
|
|||
SUBDIR += scimark2c
|
||||
SUBDIR += siege
|
||||
SUBDIR += stream
|
||||
SUBDIR += super-smack
|
||||
SUBDIR += tcpblast
|
||||
SUBDIR += thrulay
|
||||
SUBDIR += tmetric
|
||||
|
|
32
benchmarks/super-smack/Makefile
Normal file
32
benchmarks/super-smack/Makefile
Normal file
|
@ -0,0 +1,32 @@
|
|||
# New ports collection makefile for: super-smack
|
||||
# Date created: 2005-12-10
|
||||
# Whom: Gea-Suan Lin <gslin@ccca.nctu.edu.tw>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= super-smack
|
||||
PORTVERSION= 1.3
|
||||
CATEGORIES= benchmarks databases
|
||||
MASTER_SITES= http://vegan.net/tony/supersmack/
|
||||
|
||||
MAINTAINER= gslin@ccca.nctu.edu.tw
|
||||
COMMENT= A benchmarking, stress testing, and load generation tool for Databases
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS+= --with-smacks-dir=${DATADIR}
|
||||
|
||||
OPTIONS= MYSQL "Enable MySQL support" on \
|
||||
POSTGRESQL "Enable PostgreSQL support" off
|
||||
|
||||
.if !defined(WITHOUT_MYSQL)
|
||||
USE_MYSQL= yes
|
||||
CONFIGURE_ARGS+= --with-mysql
|
||||
.endif
|
||||
|
||||
.if defined(WITH_POSTGRESQL)
|
||||
USE_PGSQL= yes
|
||||
CONFIGURE_ARGS+= --with-postgresql
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
3
benchmarks/super-smack/distinfo
Normal file
3
benchmarks/super-smack/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (super-smack-1.3.tar.gz) = 1884be74822d1fa3bcd7f997935a13db
|
||||
SHA256 (super-smack-1.3.tar.gz) = 969d40e772faa8580f8e8f2dfa2a381fbadbd79fc0c94304347d594dba2a9bd9
|
||||
SIZE (super-smack-1.3.tar.gz) = 155375
|
6
benchmarks/super-smack/pkg-descr
Normal file
6
benchmarks/super-smack/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
Super Smack is a benchmarking, stress testing, and load generation tool
|
||||
for MySQL (and PostgreSQL). Super Smack was originally written by Sasha
|
||||
Pachev, and then hosted and maintained by Jeremy Zawodny.
|
||||
|
||||
Author: Tony Bourke <tony (at) vegan (dot) net>
|
||||
WWW: http://vegan.net/tony/supersmack/
|
6
benchmarks/super-smack/pkg-plist
Normal file
6
benchmarks/super-smack/pkg-plist
Normal file
|
@ -0,0 +1,6 @@
|
|||
bin/gen-data
|
||||
bin/super-smack
|
||||
%%DATADIR%%/select-key.smack
|
||||
%%DATADIR%%/update-select.smack
|
||||
@dirrm %%DATADIR%%
|
||||
@unexec rmdir /var/smack-data 2>/dev/null || true
|
Loading…
Reference in a new issue