git: c27d298826e9 - main - security/amavisd-new: rar is available for both i386 and amd64

From: Florian Smeets <flo_at_FreeBSD.org>
Date: Fri, 09 Aug 2024 18:31:25 UTC
The branch main has been updated by flo:

URL: https://cgit.FreeBSD.org/ports/commit/?id=c27d298826e9d6d85675e1046a437f68fed09bef

commit c27d298826e9d6d85675e1046a437f68fed09bef
Author:     Lars Herschke <lhersch@dssgmbh.de>
AuthorDate: 2024-08-08 07:00:26 +0000
Commit:     Florian Smeets <flo@FreeBSD.org>
CommitDate: 2024-08-09 18:31:03 +0000

    security/amavisd-new: rar is available for both i386 and amd64
    
    PR:             280672
---
 security/amavisd-new/Makefile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/security/amavisd-new/Makefile b/security/amavisd-new/Makefile
index fcc8528f26db..e7819d2c9a32 100644
--- a/security/amavisd-new/Makefile
+++ b/security/amavisd-new/Makefile
@@ -1,6 +1,6 @@
 PORTNAME=	amavisd-new
 DISTVERSION=	2.12.3
-PORTREVISION=	4
+PORTREVISION=	5
 PORTEPOCH=	1
 CATEGORIES=	security
 
@@ -144,14 +144,14 @@ AMAVIS_NOP0F=	"@comment "
 RUN_DEPENDS+=	file>=4.21:sysutils/file
 .endif
 
-# archivers/rar is a 32-bit binary port, we don't want the install to fail
+# archivers/rar is a x86 binary port, we don't want the install to fail
 # at that port, therefore we will block instantly here if the platform does
 # not suit rar.
 .if ${PORT_OPTIONS:MRAR}
-.if ${ARCH} == "i386"
+.if ${ARCH} == "i386" || ${ARCH} == "amd64"
 RUN_DEPENDS+=	${LOCALBASE}/bin/rar:archivers/rar
 .else
-IGNORE=	archivers/rar is a 32-bit binary port and is not compatible with ${ARCH}
+IGNORE=	archivers/rar is a x86 binary port and is not compatible with ${ARCH}
 .endif
 .endif