Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 10 Aug 2023 11:21:05 GMT
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 2f524a645fc8 - main - editors/encryptpad: recognize powerpc64le
Message-ID:  <202308101121.37ABL5XJ020748@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202308101121.37ABL5XJ020748>