Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Feb 2023 18:19:16 GMT
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 827d888b22f2 - main - x11/hyprpaper: ignore on big-endian architectures
Message-ID:  <202302271819.31RIJGOK034723@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by jbeich:

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

commit 827d888b22f23e8aeb8e4205262f9d6845d7af85
Author:     Jan Beich <jbeich@FreeBSD.org>
AuthorDate: 2023-02-27 18:14:07 +0000
Commit:     Jan Beich <jbeich@FreeBSD.org>
CommitDate: 2023-02-27 18:19:11 +0000

    x11/hyprpaper: ignore on big-endian architectures
    
    src/helpers/Jpeg.cpp:8:2: error: "your system is not little endian, jpeg will not work, ping vaxry or something"
     #error "your system is not little endian, jpeg will not work, ping vaxry or something"
      ^
    
    Reported by:    pkg-fallout (powerpc64)
---
 x11/hyprpaper/Makefile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/x11/hyprpaper/Makefile b/x11/hyprpaper/Makefile
index 3d20d9876e72..263f6a0a9325 100644
--- a/x11/hyprpaper/Makefile
+++ b/x11/hyprpaper/Makefile
@@ -9,6 +9,9 @@ WWW=		https://github.com/hyprwm/hyprpaper
 LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
+NOT_FOR_ARCHS=	mips mips64 powerpc powerpc64 powerpcspe sparc64
+NOT_FOR_ARCHS_REASON=	Only little endian is supported
+
 BUILD_DEPENDS=	gmake:devel/gmake \
 		wayland-protocols>0:graphics/wayland-protocols
 LIB_DEPENDS=	libwayland-client.so:graphics/wayland



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