b021813da0
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0. 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=...").
35 lines
914 B
Makefile
35 lines
914 B
Makefile
# $NetBSD: Makefile,v 1.5 2008/10/19 19:17:42 he Exp $
|
|
|
|
.include "../../chat/xchat/Makefile.common"
|
|
|
|
PKGNAME= ${DISTNAME:S/-/-perl-/}
|
|
OWNER= tron@NetBSD.org
|
|
PKGREVISION= 1
|
|
|
|
COMMENT= Perl scripting plugin for XChat
|
|
|
|
DEPENDS+= xchat>=2.0.0:../../chat/xchat
|
|
|
|
BUILD_DIRS?= plugins/perl
|
|
|
|
CONFIGURE_ARGS+= --disable-gtkfe
|
|
CONFIGURE_ARGS+= --enable-tcl=no
|
|
CONFIGURE_ARGS+= --enable-perl
|
|
CONFIGURE_ARGS+= --disable-python
|
|
|
|
USE_PERL5= YES
|
|
USE_TOOLS+= perl
|
|
|
|
.include "../../lang/perl5/buildlink3.mk"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/xchat
|
|
${INSTALL_DATA} ${WRKSRC}/plugins/perl/alt_completion.pl \
|
|
${PREFIX}/share/examples/xchat
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xchat
|
|
${INSTALL_DATA} ${WRKSRC}/plugins/perl/xchat2-perl.html \
|
|
${PREFIX}/share/doc/xchat
|
|
${INSTALL_DATA} ${WRKSRC}/plugins/perl/xchat2-perldocs.html \
|
|
${PREFIX}/share/doc/xchat
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|