pkgsrc changes: - add license definition - add dependencies (from META.yml/Build.PL) Upstream changes: version 0.004; 2010-09-01 * mro option for mix_class(), to control the method resolution order of the mixture class * prefix option for mix_class(), to control where the mixture class is located * document that PREFIX missing from genpkg() means "don't care", and change the actual default from "" to "Class::Mix::" * check for required Perl version at runtime * remove extra block around each sub definition, for readability * use full stricture in test suite * in Build.PL, explicitly declare configure-time requirements * remove bogus "exit 0" from Build.PL * add MYMETA.yml to .cvsignore
26 lines
699 B
Makefile
26 lines
699 B
Makefile
# $NetBSD: Makefile,v 1.4 2010/09/02 19:18:30 sno Exp $
|
|
#
|
|
|
|
DISTNAME= Class-Mix-0.004
|
|
PKGNAME= p5-${DISTNAME}
|
|
#PKGREVISION= 1
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Class/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/Class-Mix/
|
|
COMMENT= Perl 5 module providing dynamic class mixing
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
DEPENDS+= p5-Params-Classify-[0-9]*:../../devel/p5-Params-Classify
|
|
DEPENDS+= {perl>=5.10.1,p5-parent-[0-9]*}:../../devel/p5-parent
|
|
|
|
USE_LANGUAGES= # empty
|
|
PERL5_MODULE_TYPE= Module::Build
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
PERL5_PACKLIST= auto/Class/Mix/.packlist
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|