1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

mysqlreport makes a friendly report of important MySQL status values.

mysqlreport transforms the values from SHOW STATUS into an easy-to-read
report that provides a much more in-depth understanding of how well
MySQL is running. For this and many other reasons, mysqlreport is
a better alternative (and practically the only alternative) to
manually interpreting SHOW STATUS.

WWW: http://hackmysql.com/mysqlreport

PR:		ports/105787
Submitted by:	Alexander Zhuravlev <zaa at zaa.pp.ru>
This commit is contained in:
Martin Wilke 2006-11-23 22:19:26 +00:00
parent 116284ba95
commit 00fac2543e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=177932
5 changed files with 60 additions and 0 deletions

View File

@ -156,6 +156,7 @@
SUBDIR += mysqlcc
SUBDIR += mysqlcppapi
SUBDIR += mysqlman
SUBDIR += mysqlreport
SUBDIR += mysqltcl
SUBDIR += mytop
SUBDIR += namazu2

View File

@ -0,0 +1,37 @@
# New ports collection makefile for: mysqlreport
# Date created: 2006-11-23
# Whom: Alexander Zhuravlev <zaa@zaa.pp.ru>
#
# $FreeBSD$
PORTNAME= mysqlreport
PORTVERSION= 2.7a
CATEGORIES= databases
MASTER_SITES= http://hackmysql.com/scripts/
EXTRACT_SUFX= .tgz
MAINTAINER= zaa@zaa.pp.ru
COMMENT= Mysqlreport makes a friendly report of important MySQL status values
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Term/ReadKey.pm:${PORTSDIR}/devel/p5-Term-ReadKey \
${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql
USE_PERL5= yes
NO_BUILD= yes
NO_WRKSUBDIR= yes
PLIST_FILES= bin/mysqlreport
PORTDOCS= mysqlreportguide.html mysqlreportdoc.html
do-install:
@${INSTALL_SCRIPT} ${WRKSRC}/mysqlreport ${PREFIX}/bin
.if !defined(NOPORTDOCS)
@${ECHO_MSG} "===> Installing documentation for ${PKGNAME}"
@${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (mysqlreport-2.7a.tgz) = a1af9e32372cff388b1fe59f595df121
SHA256 (mysqlreport-2.7a.tgz) = fb77406fa5ce13935e69591c71cda1a539d0959f611796f472e41360586b2cf4
SIZE (mysqlreport-2.7a.tgz) = 20785

View File

@ -0,0 +1,11 @@
--- mysqlreport.orig Thu Nov 23 17:56:12 2006
+++ mysqlreport Thu Nov 23 18:03:54 2006
@@ -76,7 +76,7 @@ $mycnf{'user'} = $op{'user'} if have
# Default values if nothing else
$mycnf{'host'} ||= 'localhost';
$mycnf{'port'} ||= 3306;
-$mycnf{'socket'} ||= '/var/run/mysqld/mysqld.sock'; # Debian default
+$mycnf{'socket'} ||= '/tmp/mysql.sock';
$mycnf{'user'} ||= $ENV{'USER'};
if(exists $op{'password'})

View File

@ -0,0 +1,8 @@
mysqlreport makes a friendly report of important MySQL status values.
mysqlreport transforms the values from SHOW STATUS into an easy-to-read
report that provides a much more in-depth understanding of how well
MySQL is running. For this and many other reasons, mysqlreport is
a better alternative (and practically the only alternative) to
manually interpreting SHOW STATUS.
WWW: http://hackmysql.com/mysqlreport