to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=..."), minus the packages updated after the perl package update. sno@ was right after all, obache@ kindly asked and he@ led the way. Thanks!
34 lines
888 B
Makefile
34 lines
888 B
Makefile
# $NetBSD: Makefile,v 1.14 2010/08/21 16:33:44 seb Exp $
|
|
#
|
|
|
|
DISTNAME= File-HomeDir-0.91
|
|
PKGNAME= p5-${DISTNAME}
|
|
PKGREVISION= 1
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=File/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/File-HomeDir/
|
|
COMMENT= Get the home directory for yourself or other users
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
USE_LANGUAGES= # empty
|
|
|
|
PERL5_PACKLIST= auto/File/HomeDir/.packlist
|
|
PERL5_MODULE_TYPE= Module::Install::Bundled
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
DEPENDS+= p5-File-Which-[0-9]*:../../devel/p5-File-Which
|
|
.if ${OPSYS} == "Darwin"
|
|
.if ${ABI} == 64
|
|
DEPENDS+= p5-Mac-SystemDirectory>=0.04:../../devel/p5-Mac-SystemDirectory
|
|
.else
|
|
DEPENDS+= p5-Mac-Carbon>=0.77:../../devel/p5-Mac-Carbon
|
|
.endif
|
|
.endif
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|