diff options
author | jlam <jlam@pkgsrc.org> | 2003-09-13 14:55:30 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2003-09-13 14:55:30 +0000 |
commit | 60b1d509077d64637c51873cc240e3e98d4af8fd (patch) | |
tree | a83178d6eec9142e938f25bfdc2f4b0768e8a3c4 /mail/spamassassin | |
parent | 9d5763e153aca626fe3225f89240b1bf6e6cf584 (diff) | |
download | pkgsrc-60b1d509077d64637c51873cc240e3e98d4af8fd.tar.gz |
Catch up with INSTALL_TARGET changes in perl5/module.mk. INSTALL_TARGET is
now set to "pure_install" in perl5/module.mk, so we need to append the
additional target "inst_cfs" that is normally invoked by the "install"
target in ${WRKSRC}/Makefile.
Diffstat (limited to 'mail/spamassassin')
-rw-r--r-- | mail/spamassassin/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/mail/spamassassin/Makefile b/mail/spamassassin/Makefile index 0c4672551b8..af2dd2faca1 100644 --- a/mail/spamassassin/Makefile +++ b/mail/spamassassin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2003/09/13 14:43:30 jlam Exp $ +# $NetBSD: Makefile,v 1.28 2003/09/13 14:55:30 jlam Exp $ DISTNAME= Mail-SpamAssassin-2.55 PKGNAME= spamassassin-2.55 @@ -43,7 +43,7 @@ PLIST_SRC= ${PKGDIR}/PLIST ${PLIST_ADD} PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/Mail/SpamAssassin/.packlist GNU_CONFIGURE= YES -PERL5_CONFIGURE= NO # need GNU_CONFIGURE "do-configure" target +PERL5_CONFIGURE= NO MAKE_PARAMS= SYSCONFDIR="${PKG_SYSCONFDIR}" MAKE_PARAMS+= LOCAL_RULES_DIR="${PKG_SYSCONFDIR}" MAKE_PARAMS+= RUN_RAZOR1_TESTS="y" RUN_RAZOR2_TESTS="y" @@ -82,7 +82,10 @@ DEPTHFIRST2= -depth FILES_SUBST+= INTERPRETER_SUPPORT="${INTERPRETER_SUPPORT}" FILES_SUBST+= OPSYS="${OPSYS}" -TEST_TARGET= test +# SpamAssassin is actually a perl module. +.include "../../lang/perl5/module.mk" + +INSTALL_TARGET+= inst_cfs post-extract: @# correct bad SA permissions @@ -175,5 +178,4 @@ post-install: @${ECHO} "bin/sslspamc" >> ${PLIST_ADD} .endif -.include "../../lang/perl5/module.mk" .include "../../mk/bsd.pkg.mk" |