diff options
author | mich <mich@FreeBSD.org> | 2003-05-15 11:49:10 +0000 |
---|---|---|
committer | mich <mich@FreeBSD.org> | 2003-05-15 11:49:10 +0000 |
commit | e2d3311b17deaa3f4ab30f08850af1d5edf6ba4d (patch) | |
tree | 788bb6e1da0906f56d2dd00a6d547c2e68b9d808 /net/wping/Makefile | |
parent | 7fedd573b6db18f6742f7676b3c2feae83002cfa (diff) | |
download | FreeBSD-ports-e2d3311b17deaa3f4ab30f08850af1d5edf6ba4d.zip FreeBSD-ports-e2d3311b17deaa3f4ab30f08850af1d5edf6ba4d.tar.gz |
New port.
A Web-based graphical ping log
PR: 50772
Approved by: roberto(mentor)
Diffstat (limited to 'net/wping/Makefile')
-rw-r--r-- | net/wping/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/net/wping/Makefile b/net/wping/Makefile new file mode 100644 index 0000000..31751f9 --- /dev/null +++ b/net/wping/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: wping +# Date created: Apr 9th 2003 +# Whom: Michael L. Hostbaek <mich@freebsdcluster.org> +# +# $FreeBSD$ +# + +PORTNAME= wping +PORTVERSION= 0.1a +CATEGORIES= net +MASTER_SITES= http://www.x-router.com/files/ + +MAINTAINER= mich@freebsdcluster.org +COMMENT= A Web-based graphical ping log + +RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/GD.pm:${PORTSDIR}/graphics/p5-GD \ + ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes + +USE_BZIP2= yes +NO_BUILD= yes + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/wping.pl ${PREFIX}/bin/wping + ${INSTALL_DATA} ${WRKSRC}/wping.conf ${PREFIX}/etc/wping.conf.sample + +.include <bsd.port.pre.mk> + +## +## this port requires PERL 5.8.x or later +## +.if ${PERL_LEVEL} < 500800 +IGNORE= Port requires perl 5.8.x or later. Install lang/perl5.8 then try again +.endif + +.include <bsd.port.post.mk> |