blob: ce3be1e9015fb978117a6491c60a246804acc0e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# New ports collection makefile for: sysbench
# Date created: 2005-12-11
# Whom: Gea-Suan Lin <gslin@ccca.nctu.edu.tw>
#
# $FreeBSD$
#
PORTNAME= sysbench
PORTVERSION= 0.4.3
CATEGORIES= benchmarks databases
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= gslin@gslin.org
COMMENT= A modular, cross-platform and multi-threaded benchmark tool
USE_AUTOTOOLS= libtool:15
OPTIONS= MYSQL "Enable MySQL support" on \
POSTGRESQL "Enable PostgreSQL support" off
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_MYSQL)
USE_MYSQL= yes
CONFIGURE_ARGS+= --with-mysql
.endif
.if defined(WITH_POSTGRESQL)
USE_PGSQL= yes
WANT_PGSQL_VER?= 80
CONFIGURE_ARGS+= --with-pgsql
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/sysbench/sysbench ${PREFIX}/bin
.for FILE in sb_run.sh sb_test_ps.sh
${INSTALL_SCRIPT} ${WRKSRC}/scripts/${FILE} ${PREFIX}/bin
.endfor
.include <bsd.port.post.mk>
|