84bf4ecc32
Class::Data::Inheritable is for creating accessor/mutators to class data. That is, if you want to store something about your class as a whole (instead of about a single object). This data is then inherited by your subclasses and can be overriden.
22 lines
465 B
Makefile
22 lines
465 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2002/10/16 12:50:40 wilfried Exp $
|
|
|
|
COMMENT= "inheritable, overridable class data"
|
|
|
|
DISTNAME= Class-Data-Inheritable-0.02
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
|
|
MAINTAINER= Jim Geovedi <jim@corebsd.or.id>
|
|
|
|
# Artistic License
|
|
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
|
|
|
|
.include <bsd.port.mk>
|