diff options
author | skreuzer <skreuzer@FreeBSD.org> | 2012-04-19 21:28:57 +0800 |
---|---|---|
committer | skreuzer <skreuzer@FreeBSD.org> | 2012-04-19 21:28:57 +0800 |
commit | 222d91bb445473352329bc6297443d07350da750 (patch) | |
tree | 6e7c02c81e5bdc9776b6e95355240050bbf87fc1 /databases | |
parent | ab5004590af6e6a28d028520622876a30a246a6a (diff) | |
download | freebsd-ports-gnome-222d91bb445473352329bc6297443d07350da750.tar.gz freebsd-ports-gnome-222d91bb445473352329bc6297443d07350da750.tar.zst freebsd-ports-gnome-222d91bb445473352329bc6297443d07350da750.zip |
Add USE_MYSQL=yes so that MYSQL_VER is defined and the correct version
of p5-DBD-mysql gets added as a dependency
PR: ports/166392
Submitted by: Helmut Schneider <jumper99@gmx.de>
Diffstat (limited to 'databases')
-rw-r--r-- | databases/innotop/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/databases/innotop/Makefile b/databases/innotop/Makefile index 94a192a47085..521e101353d0 100644 --- a/databases/innotop/Makefile +++ b/databases/innotop/Makefile @@ -7,7 +7,7 @@ PORTNAME= innotop PORTVERSION= 1.8.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases MASTER_SITES= GOOGLE_CODE @@ -17,14 +17,15 @@ COMMENT= A MySQL and InnoDB monitoring program LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-DBD-mysql>=3:${PORTSDIR}/databases/p5-DBD-mysql \ +BUILD_DEPENDS= p5-DBD-mysql${MYSQL_VER}>=0:${PORTSDIR}/databases/p5-DBD-mysql${MYSQL_VER} \ p5-DBI>=1.46:${PORTSDIR}/databases/p5-DBI \ p5-Term-ReadKey>=2.10:${PORTSDIR}/devel/p5-Term-ReadKey -RUN_DEPENDS= p5-DBD-mysql>=3:${PORTSDIR}/databases/p5-DBD-mysql \ +RUN_DEPENDS= p5-DBD-mysql${MYSQL_VER}>=0:${PORTSDIR}/databases/p5-DBD-mysql${MYSQL_VER} \ p5-DBI>=1.46:${PORTSDIR}/databases/p5-DBI \ p5-Term-ReadKey>=2.10:${PORTSDIR}/devel/p5-Term-ReadKey PERL_CONFIGURE= yes +USE_MYSQL= yes MAN1= innotop.1 |