pkgsrc/devel/p5-File-ChangeNotify/Makefile
wen 609ed3110a Update to 0.23
Upstream changes:
0.23   2013-01-26

- The new_events() watcher method blocked when using IO::Kqueue as the watcher
  backend. Reported and patched by Jun Kuriyama.


0.22   2012-04-13

- Remove unnecessary Perl 5.10 requirement.


0.21   2012-02-03

- The implementation of the exclude feature did not work properly in several
  cases. First, for the Inotify and KQueue watchers, when a new directory was
  created that should have been excluded, it was not. Second, it didn't work
  for files at all for these watchers. Reported by Jon Swartz. RT #73089.
2013-07-27 01:49:39 +00:00

33 lines
1.2 KiB
Makefile

# $NetBSD: Makefile,v 1.18 2013/07/27 01:49:39 wen Exp $
DISTNAME= File-ChangeNotify-0.23
PKGNAME= p5-${DISTNAME}
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=File/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://search.cpan.org/dist/File-ChangeNotify/
COMMENT= Watch for changes to files, cross-platform style
LICENSE= artistic-2.0
PKG_INSTALLATION_TYPES= overwrite pkgviews
BUILD_DEPENDS+= {perl>=5.10.1,p5-Test-Simple>=0.88}:../../devel/p5-Test-Simple
DEPENDS+= p5-Moose>=2:../../devel/p5-Moose
DEPENDS+= p5-MooseX-Params-Validate>=0.08:../../devel/p5-MooseX-Params-Validate
DEPENDS+= p5-MooseX-SemiAffordanceAccessor-[0-9]*:../../devel/p5-MooseX-SemiAffordanceAccessor
DEPENDS+= p5-namespace-autoclean-[0-9]*:../../devel/p5-namespace-autoclean
PERL5_MODULE_TYPE= Module::Build
PERL5_PACKLIST= auto/File/ChangeNotify/.packlist
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS:M*BSD} || ${OPSYS} == "Darwin" || ${OPSYS} == "DragonFly"
DEPENDS+= p5-IO-KQueue-[0-9]*:../../sysutils/p5-IO-KQueue
.elif ${OPSYS} == "Linux"
DEPENDS+= p5-Linux-Inotify2>=1.2:../../sysutils/p5-Linux-Inotify2
.endif
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"