diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2003-10-24 12:05:09 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2003-10-24 12:05:09 +0000 |
commit | c634b4bb839753aec2ae1040e2c80a5282402cb8 (patch) | |
tree | d8b3fc97550f860aeb41c57751d2550e9ad6273e /mail/cyrus-imapd23/Makefile | |
parent | Change MASTER_SITES to fix fetch (diff) |
utilize SITE_PERL
PR: 58166
Submitted by: Cheng-Lung Sung <clsung@dragon2.net>
Notes
Notes:
svn path=/head/; revision=92059
Diffstat (limited to 'mail/cyrus-imapd23/Makefile')
-rw-r--r-- | mail/cyrus-imapd23/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/cyrus-imapd23/Makefile b/mail/cyrus-imapd23/Makefile index 381332b97bcb..9ae82e1bdbef 100644 --- a/mail/cyrus-imapd23/Makefile +++ b/mail/cyrus-imapd23/Makefile @@ -133,10 +133,10 @@ PKGINSTALL= ${WRKDIR}/pkg-install .include <bsd.port.pre.mk> .if ${PERL_LEVEL} < 500800 -RUN_DEPENDS+= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp +RUN_DEPENDS+= ${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp .endif .if ${PERL_LEVEL} < 500600 -RUN_DEPENDS+= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Pod/Parser.pm:${PORTSDIR}/textproc/p5-PodParser +RUN_DEPENDS+= ${SITE_PERL}/Pod/Parser.pm:${PORTSDIR}/textproc/p5-PodParser .endif RC_SCRIPTS_SUB= PREFIX=${PREFIX} \ @@ -168,7 +168,7 @@ post-patch: ${WRKSRC}/tools/masssievec @${CP} ${WRKSRC}/man/quota.8 ${WRKSRC}/man/cyrquota.8 .if ${PERL_LEVEL} < 500600 - @${REINPLACE_CMD} -e "s|exec perl -x|exec perl -I${LOCALBASE}/lib/perl5/site_perl/${PERL_VER} -x|" \ + @${REINPLACE_CMD} -e "s|exec perl -x|exec perl -I${SITE_PERL} -x|" \ ${WRKSRC}/perl/sieve/scripts/sieveshell.pl .endif |