mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
7fcd3b36c7
pgtop was inspired by mytop (http://mytop.sourceforge.net/ [1]), which in turn was inspired by the system monitoring tool top. pgtop will connect to a PostgreSQL server and periodically run queries against the pg_stat* relations and attempt to summarize the information from them in a useful format. http://search.cpan.org/~cosimo/pgtop-0.04/pgtop [1] this site is not available, the correct one is: http://jeremy.zawodny.com/mysql/mytop/ PR: ports/98204 Submitted by: r@robakdesign.com <r@valinor.amu.edu.pl>
28 lines
803 B
Makefile
28 lines
803 B
Makefile
# New ports collection makefile for: pgtop
|
|
# Date created: 30 May 2006
|
|
# Whom: Bartek Rutkowski <r@robakdesign.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pgtop
|
|
PORTVERSION= 0.04
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= ../../authors/id/C/CO/COSIMO
|
|
|
|
MAINTAINER= r@robakdesign.com
|
|
COMMENT= Display PostgreSQL performance info like top(1)
|
|
|
|
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Term/ReadKey.pm:${PORTSDIR}/devel/p5-Term-ReadKey \
|
|
${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg \
|
|
${SITE_PERL}/${PERL_ARCH}/Bundle/DBI.pm:${PORTSDIR}/databases/p5-DBI \
|
|
${SITE_PERL}/Term/ANSIColor.pm:${PORTSDIR}/devel/p5-Term-ANSIColor \
|
|
${SITE_PERL}/Getopt/Long.pm:${PORTSDIR}/devel/p5-Getopt-Long
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN1= pgtop.1
|
|
|
|
.include <bsd.port.mk>
|