Received: by mail.netbsd.org (Postfix, from userid 605) id D1CBC84D8A; Wed, 22 Sep 2021 12:57:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 188E484CDC for ; Wed, 22 Sep 2021 12:57:50 +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 Tz6F5ASjvOQl for ; Wed, 22 Sep 2021 12:57:49 +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 6845684D74 for ; Wed, 22 Sep 2021 12:57:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5C2A7FA97; Wed, 22 Sep 2021 12:57:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1632315469164990" MIME-Version: 1.0 Date: Wed, 22 Sep 2021 12:57:49 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/emulators/melonds To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210922125749.5C2A7FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1632315469164990 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Sep 22 12:57:49 UTC 2021 Modified Files: pkgsrc/emulators/melonds: Makefile Log Message: melonds: Requires EGL support in Mesa To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/emulators/melonds/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1632315469164990 Content-Disposition: inline Content-Length: 857 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/melonds/Makefile diff -u pkgsrc/emulators/melonds/Makefile:1.7 pkgsrc/emulators/melonds/Makefile:1.8 --- pkgsrc/emulators/melonds/Makefile:1.7 Wed Sep 8 21:05:01 2021 +++ pkgsrc/emulators/melonds/Makefile Wed Sep 22 12:57:49 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2021/09/08 21:05:01 nia Exp $ +# $NetBSD: Makefile,v 1.8 2021/09/22 12:57:49 nia Exp $ DISTNAME= melonDS-0.8.3 PKGNAME= ${DISTNAME:S/DS/ds/} @@ -28,6 +28,11 @@ INSTALLATION_DIRS+= share/applications INSTALLATION_DIRS+= share/icons/hicolor/${s}x${s}/apps .endfor +.include "../../graphics/MesaLib/features.mk" +.if ${MESALIB_SUPPORTS_EGL:tl} == "no" +PKG_FAIL_REASON+= "Requires EGL support in Mesa" +.endif + post-install: ${INSTALL_DATA} ${WRKSRC}/flatpak/net.kuribo64.melonds.desktop \ ${DESTDIR}${PREFIX}/share/applications --_----------=_1632315469164990--