Log::Message is a generic message storage mechanism. It allows you to store messages on a stack -- either shared or private -- and assign meta-data to it. Some meta-data will automatically be added for you, like a timestamp and a stack trace, but some can be filled in by the user, like a tag by which to identify it or group it, and a level at which to handle the message (for example, log it, or die with it) Log::Message also provides a powerful way of searching through items by regexes on messages, tags and level.
18 lines
486 B
Makefile
18 lines
486 B
Makefile
# $NetBSD: Makefile,v 1.1 2015/02/06 05:13:11 mef Exp $
|
|
#
|
|
|
|
DISTNAME= Log-Message-0.08
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Log/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/~bingos/Log-Message/
|
|
COMMENT= Log::Message - A generic message storing mechanism
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
PERL5_PACKLIST= auto/Log/Message/.packlist
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|