diff options
author | skreuzer <skreuzer@FreeBSD.org> | 2011-10-11 21:02:55 +0800 |
---|---|---|
committer | skreuzer <skreuzer@FreeBSD.org> | 2011-10-11 21:02:55 +0800 |
commit | e00bf16ef1ac22bcae00caa1890da55a4fd0079c (patch) | |
tree | 42ae3adc4094e9675abbf7f6f65ce955dd67ac1b /databases | |
parent | 19fdf1f4b1d8be8b07eeb0f00cef43ad10fe2a0d (diff) | |
download | freebsd-ports-gnome-e00bf16ef1ac22bcae00caa1890da55a4fd0079c.tar.gz freebsd-ports-gnome-e00bf16ef1ac22bcae00caa1890da55a4fd0079c.tar.zst freebsd-ports-gnome-e00bf16ef1ac22bcae00caa1890da55a4fd0079c.zip |
- Update *_DEPENDS
- Remove Data::Dumper which is in all supported Perl releases
- Add DBI
- Add minimal required version
PR: ports/161234
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
Diffstat (limited to 'databases')
-rw-r--r-- | databases/innotop/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/databases/innotop/Makefile b/databases/innotop/Makefile index 270396e88a39..f122e51d302e 100644 --- a/databases/innotop/Makefile +++ b/databases/innotop/Makefile @@ -7,6 +7,7 @@ PORTNAME= innotop PORTVERSION= 1.8.0 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= GOOGLE_CODE @@ -16,9 +17,12 @@ COMMENT= A MySQL and InnoDB monitoring program LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -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 \ - ${SITE_PERL}/${PERL_ARCH}/Data/Dumper.pm:${PORTSDIR}/devel/p5-Data-Dumper +BUILD_DEPENDS= p5-DBD-mysql>=1:${PORTSDIR}/databases/p5-DBD-mysql \ + p5-DBI>=1.130:${PORTSDIR}/databases/p5-DBI \ + p5-Term-ReadKey>=2.10:${PORTSDIR}/devel/p5-Term-ReadKey +RUN_DEPENDS= p5-DBD-mysql>=1:${PORTSDIR}/databases/p5-DBD-mysql \ + p5-DBI>=1.130:${PORTSDIR}/databases/p5-DBI \ + p5-Term-ReadKey>=2.10:${PORTSDIR}/devel/p5-Term-ReadKey PERL_CONFIGURE= yes |