git: 2f524a645fc8 - main - editors/encryptpad: recognize powerpc64le

From: Piotr Kubaj <pkubaj_at_FreeBSD.org>
Date: Thu, 10 Aug 2023 11:21:05 UTC
The branch main has been updated by pkubaj:

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

commit 2f524a645fc89e9f8686b5f60a0099d6f9f3123c
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2023-08-10 11:13:02 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2023-08-10 11:21:00 +0000

    editors/encryptpad: recognize powerpc64le
---
 editors/encryptpad/Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/editors/encryptpad/Makefile b/editors/encryptpad/Makefile
index cb4093efdb8d..b2871579decf 100644
--- a/editors/encryptpad/Makefile
+++ b/editors/encryptpad/Makefile
@@ -1,6 +1,7 @@
 PORTNAME=	encryptpad
 DISTVERSIONPREFIX=	v
 DISTVERSION=	0.5.0.2
+PORTREVISION=	1
 CATEGORIES=	editors security
 
 MAINTAINER=	dmgk@FreeBSD.org
@@ -31,7 +32,9 @@ OPTIONS_DEFINE=	DOCS
 .include <bsd.port.options.mk>
 
 .if ${ARCH} == powerpc64
-CONFIGURE_ARGS=	--cpu="${ARCH}"
+CONFIGURE_ARGS=	--cpu="ppc64"
+.elif ${ARCH} == powerpc64le
+CONFIGURE_ARGS=	--cpu="ppc64le"
 .endif
 
 .include <bsd.port.pre.mk>