78ffcc683e
Debugging And Tracing Ultimate Module Carp::Datum implements the following features: * Programming by contract: pre-conditions, post-conditions, assertions. * Flow control tracing: routine entry, arguments, returned values * Dynamic (i.e. runtime) configuration via mini language to tailor debugging and/or tracing at the routine / file / package / type level. * Ability to statically remove all assertions and flow control tracing hooks in modules making use of Carp::Datum. * Cooperation with Log::Agent for tracing. from Andrew Dalgleish <openbsd@andrewdalgleish.dyndns.org> minor cleanup by me
24 lines
564 B
Makefile
24 lines
564 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/04/13 16:54:28 sturm Exp $
|
|
|
|
COMMENT= "debugging and tracing ultimate module"
|
|
|
|
DISTNAME= Carp-Datum-0.1.3
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Carp/}
|
|
|
|
MAINTAINER= Andrew Dalgleish <openbsd@andrewdalgleish.dyndns.org>
|
|
|
|
# Artistic License
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
RUN_DEPENDS= :p5-Getargs-Long->=0.1.3:devel/p5-Getargs-Long
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
CONFIGURE_STYLE= perl
|
|
|
|
.include <bsd.port.mk>
|