Received: by mail.netbsd.org (Postfix, from userid 605) id AE67584DF8; Fri, 11 Sep 2020 10:28:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3569784DEF for ; Fri, 11 Sep 2020 10:28:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at 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 xQwtEnOHrY60 for ; Fri, 11 Sep 2020 10:28:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 87B9884CDF for ; Fri, 11 Sep 2020 10:28:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 80DD2FB28; Fri, 11 Sep 2020 10:28:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1599820089298860" MIME-Version: 1.0 Date: Fri, 11 Sep 2020 10:28:09 +0000 From: "Michael Baeuerle" Subject: CVS commit: pkgsrc/games/woof To: pkgsrc-changes@NetBSD.org Reply-To: micha@netbsd.org X-Mailer: log_accum Message-Id: <20200911102809.80DD2FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1599820089298860 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: micha Date: Fri Sep 11 10:28:09 UTC 2020 Modified Files: pkgsrc/games/woof: Makefile Log Message: games/woof: Build fix for Darwin XDG desktop and icon files are now always installed (on Darwin too). pkgsrc users maybe have X11 installed on Apple machines. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/games/woof/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1599820089298860 Content-Disposition: inline Content-Length: 1052 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/woof/Makefile diff -u pkgsrc/games/woof/Makefile:1.10 pkgsrc/games/woof/Makefile:1.11 --- pkgsrc/games/woof/Makefile:1.10 Thu Sep 3 10:26:47 2020 +++ pkgsrc/games/woof/Makefile Fri Sep 11 10:28:09 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2020/09/03 10:26:47 micha Exp $ +# $NetBSD: Makefile,v 1.11 2020/09/11 10:28:09 micha Exp $ DISTNAME= woof_2.1.1 PKGNAME= ${DISTNAME:S/_/-/} @@ -37,6 +37,15 @@ SUBST_MESSAGE.uint= Preparing m_misc.c f SUBST_FILES.uint= Source/m_misc.c SUBST_SED.uint= -e 's,uint_t,woof_uint_t,' +# XDG desktop file and icon are installed by the build system with the logic: +# if(UNIX AND NOT APPLE) +# Remove Apple exception because pkgsrc users maybe have X11 on Apple machines +SUBST_CLASSES+= xdg +SUBST_STAGE.xdg= pre-configure +SUBST_MESSAGE.xdg= Preparing data/CMakeLists.txt file ... +SUBST_FILES.xdg= data/CMakeLists.txt +SUBST_SED.xdg= -e 's,UNIX AND NOT APPLE,UNIX,' + pre-configure: cd ${WRKSRC}; mkdir build ${CP} ${FILESDIR}/INSTALL.pkgsrc ${WRKDIR} --_----------=_1599820089298860--