7ca5240215
mytop is a console-based (non-gui) tool for monitoring the threads and overall performance of MySQL 3.22.x, 3.23.x, and 4.x servers. It runs on most Unix systems (including Mac OS X) which have Perl, DBI, and Term::ReadKey installed. And with Term::ANSIColor installed you even get color. If you install Time::HiRes, you'll get good real-time queries/second stats. From Dave Steinberg <dave@redterror.net>
29 lines
598 B
Makefile
29 lines
598 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/05/17 18:18:36 alek Exp $
|
|
|
|
COMMENT= "top clone for MySQL"
|
|
|
|
DISTNAME= mytop-1.4
|
|
CATEGORIES= databases perl5
|
|
|
|
HOMEPAGE= http://jeremy.zawodny.com/mysql/mytop/
|
|
|
|
MAINTAINER= Dave Steinberg <dave@redterror.net>
|
|
|
|
# GPL / Artistic License
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
RUN_DEPENDS= :p5-DBD-mysql->=2.9004:databases/p5-DBD-mysql \
|
|
:p5-Term-ReadKey->=2.30:devel/p5-Term-ReadKey
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
CONFIGURE_STYLE=perl
|
|
|
|
PKG_ARCH= *
|
|
|
|
.include <bsd.port.mk>
|