2d10579247
- While I'm here: - Add LICENSE - Fix *_DEPENDS - Support STAGEDIR - Fix PLIST: add missing files It monitors files in a given directory (or set of directories), such as Apache log files in /var/log/httpd, and as the log files are written to, takes the changes and sends them to a running instance of the Scribe logging system. WWW: http://search.cpan.org/dist/File-Tail-Scribe/ PR: ports/184263 Submitted by: Hung-Yi Chen <gaod@hychen.org>
25 lines
634 B
Makefile
25 lines
634 B
Makefile
# Created by: Hung-Yi Chen <gaod@hychen.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= File-Tail-Scribe
|
|
PORTVERSION= 0.13
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= gaod@hychen.org
|
|
COMMENT= Perl Module to tail file to Scribe server
|
|
|
|
LICENSE= ART10 GPLv1
|
|
LICENSE_COMB= dual
|
|
|
|
BUILD_DEPENDS= p5-File-Tail-Dir>=0:${PORTSDIR}/devel/p5-File-Tail-Dir \
|
|
p5-Log-Dispatch-Scribe>=0:${PORTSDIR}/devel/p5-Log-Dispatch-Scribe \
|
|
p5-Moose>=0:${PORTSDIR}/devel/p5-Moose
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
TEST_DEPENDS= p5-Test-MockObject>=0:${PORTSDIR}/devel/p5-Test-MockObject
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
.include <bsd.port.mk>
|