diff options
author | Felix Palmen <zirias@FreeBSD.org> | 2024-01-02 12:03:42 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2024-01-02 12:06:31 +0000 |
commit | 0e934381a66de7bda4e95ee61af8312fec2813a8 (patch) | |
tree | 33a1b00a5dac089be23a4bc5e367f5437553f107 | |
parent | b6f31ce42c6e27b91a666f0a7a550e945124f3b5 (diff) |
mail/exim: build breaks if EMBEDDED_PERL is unset
- build depends on perl5 present, for exigrep
PR: 275023
Reported-by: Andrew "RhodiumToad" Gierth <andrew@tao11.riddles.org.uk>
Submitted-by: zirias
Approved-by: fluffy (implicit)
Author: Felix Palmen <zirias@FreeBSD.org>
-rw-r--r-- | mail/exim/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index c74df7d216b6..e592942dd197 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -1,6 +1,6 @@ PORTNAME= exim PORTVERSION?= ${EXIM_VERSION} -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= mail MASTER_SITES= EXIM:exim MASTER_SITE_SUBDIR= /exim4/:exim \ @@ -17,9 +17,11 @@ WWW= https://www.exim.org/ LICENSE= GPLv2 +BUILD_DEPENDS= p5-File-FcntlLock>0:devel/p5-File-FcntlLock +RUN_DEPENDS= p5-File-FcntlLock>0:devel/p5-File-FcntlLock + USES= compiler cpe tar:bzip2 perl5 USE_CSTD= c99 -USE_PERL5= run # Exim build system is job unsafe atm MAKE_JOBS_UNSAFE= yes @@ -46,9 +48,6 @@ OPTIONS_SUB= yes AUTH_SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 BDB_USES= bdb DMARC_LIB_DEPENDS= libopendmarc.so:mail/opendmarc -EMBEDDED_PERL_USE= perl5=run,build -EMBEDDED_PERL_BUILD_DEPENDS= p5-File-FcntlLock>0:devel/p5-File-FcntlLock -EMBEDDED_PERL_RUN_DEPENDS= p5-File-FcntlLock>0:devel/p5-File-FcntlLock EXIMON_USES= xorg EXIMON_USE= xorg=x11,xaw,xext,xmu,xt GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls |