90c6407f97
Its possible to accidentally inherit an AUTOLOAD method. Often this will happen if a class somewhere in the chain uses AutoLoader or defines one of their own. This can lead to confusing error messages when method lookups fail. Sometimes you want to avoid this accidental inheritance. In that case, inherit from Class::WhiteHole. All unhandled methods will produce normal Perl error messages. from Sam Smith <S at msmith.net>
24 lines
473 B
Makefile
24 lines
473 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2004/05/19 09:23:30 sturm Exp $
|
|
|
|
COMMENT= "base class to treat unhandled method calls as errors"
|
|
|
|
DISTNAME= Class-WhiteHole-0.04
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
|
|
MAINTAINER= Sam Smith <S@msmith.net>
|
|
|
|
# Same as Perl
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Class/}
|
|
|
|
CONFIGURE_STYLE=perl
|
|
|
|
PKG_ARCH= *
|
|
|
|
.include <bsd.port.mk>
|