mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
b626ffda09
- Bump PORTREVISION for dependency change PR: ports/161259 Submitted by: sunpoet (myself) Approved by: maintainer (timeout, 3 weeks)
37 lines
942 B
Makefile
37 lines
942 B
Makefile
# New ports collection makefile for: mysqlreport
|
|
# Date created: 2006-11-23
|
|
# Whom: Alexander Zhuravlev <zaa@zaa.pp.ru>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mysqlreport
|
|
PORTVERSION= 3.5
|
|
PORTREVISION= 2
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://hackmysql.com/scripts/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= lippe@FreeBSD.org
|
|
COMMENT= Mysqlreport makes a friendly report of important MySQL status values
|
|
|
|
RUN_DEPENDS= p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql \
|
|
p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \
|
|
p5-Term-ReadKey>=0:${PORTSDIR}/devel/p5-Term-ReadKey
|
|
|
|
USE_PERL5= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/mysqlreport
|
|
PORTDOCS= COPYING mysqlreportguide.html mysqlreportdoc.html
|
|
|
|
do-install:
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/mysqlreport ${PREFIX}/bin
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
@${ECHO_MSG} "===> Installing documentation for ${PKGNAME}"
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|