Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=JW1rIUo4; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=C17kcpRY Received: by mail.netbsd.org (Postfix, from userid 605) id 219E28505D; Sat, 4 May 2024 10:09:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714817355; bh=sn2dhCkYQQYBysUlbKGkHvb9JQy0EvG/wUyLcVwMcTE=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=JW1rIUo4vJhUHxQdsiB5bD3zeOnxKm205MluZdoBXK5nv860T7Ea7lNQN+ZelIMUi Lf+PcTdjkVSAk6Xf8XEzGD2auWc5MuB23L1mv9wwoUaDn5qtJGUGA/wdy+egLNXtij RVNrs5yJwA+H8vTgQBFeBREFX5ArV9EEMAdgsjBU= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1262B84E64 for ; Sat, 4 May 2024 10:09:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id ft2G9hMyvGEh for ; Sat, 4 May 2024 10:09:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 60A6284D14 for ; Sat, 4 May 2024 10:09:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714817353; bh=sn2dhCkYQQYBysUlbKGkHvb9JQy0EvG/wUyLcVwMcTE=; h=Date:From:Subject:To:Reply-To; b=C17kcpRYheNKxR0s/WFFAOL9QBG4LKi4jzFEFyywfV5gd6M6kRijSxq1CwUBz/imy 4ecfQt9zJD4CSTnBEJ1NteexN0JG68xO1ciD5NliT1l005zkmbaJdSf7rdhmFl9Cvf icTL/Vw5O9691d44VxW+jgJ+K/oHkiWJkCIFbsd8= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 530ADFA2C; Sat, 4 May 2024 10:09:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1714817353211750" MIME-Version: 1.0 Date: Sat, 4 May 2024 10:09:13 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/games/sdlpop To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20240504100913.530ADFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1714817353211750 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat May 4 10:09:13 UTC 2024 Modified Files: pkgsrc/games/sdlpop: Makefile Log Message: sdlpop: Refuses to compile on big endian platforms To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/games/sdlpop/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1714817353211750 Content-Disposition: inline Content-Length: 813 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/sdlpop/Makefile diff -u pkgsrc/games/sdlpop/Makefile:1.13 pkgsrc/games/sdlpop/Makefile:1.14 --- pkgsrc/games/sdlpop/Makefile:1.13 Sat Apr 6 08:05:37 2024 +++ pkgsrc/games/sdlpop/Makefile Sat May 4 10:09:13 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2024/04/06 08:05:37 wiz Exp $ +# $NetBSD: Makefile,v 1.14 2024/05/04 10:09:13 nia Exp $ DISTNAME= sdlpop-1.22 PKGREVISION= 8 @@ -21,6 +21,11 @@ MAKE_FLAGS= CC=${CC:Q} CFLAGS+= -DPKGSRC_DATA_PATH="\"${PREFIX}/share/sdlpop/\"" +.include "../../mk/bsd.fast.prefs.mk" +# "#error This program is not (yet) prepared for big endian CPUs, +# please contact the author." +NOT_FOR_PLATFORM+= ${BIGENDIANPLATFORMS} + INSTALLATION_DIRS+= bin INSTALLATION_DIRS+= share/applications INSTALLATION_DIRS+= share/doc/sdlpop --_----------=_1714817353211750--