From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 67A9F138334 for ; Sat, 2 Nov 2019 15:00:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9160EE0898; Sat, 2 Nov 2019 15:00:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 75C76E0898 for ; Sat, 2 Nov 2019 15:00:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2C7FE34C6EC for ; Sat, 2 Nov 2019 15:00:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B90F773 for ; Sat, 2 Nov 2019 15:00:09 +0000 (UTC) From: "Hanno Boeck" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hanno Boeck" Message-ID: <1572706799.434a67f0c946a4d93d3ac4cb3438e809c09a9f4f.hanno@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/desmume/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/desmume/desmume-0.9.11-r2.ebuild X-VCS-Directories: games-emulation/desmume/ X-VCS-Committer: hanno X-VCS-Committer-Name: Hanno Boeck X-VCS-Revision: 434a67f0c946a4d93d3ac4cb3438e809c09a9f4f X-VCS-Branch: master Date: Sat, 2 Nov 2019 15:00:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 655804ab-7318-4533-b235-c46bcbe3a07c X-Archives-Hash: d5319b18fff2a8a0a71fd48622b2ae7d commit: 434a67f0c946a4d93d3ac4cb3438e809c09a9f4f Author: Hanno gentoo org> AuthorDate: Sat Nov 2 14:59:59 2019 +0000 Commit: Hanno Boeck gentoo org> CommitDate: Sat Nov 2 14:59:59 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=434a67f0 games-emulation/desmume: Remove unneeded gtkglext dependency Port to EAPI 7. Closes: https://bugs.gentoo.org/698962 Closes: https://github.com/gentoo/gentoo/pull/13506 Signed-off-by: Hanno Boeck gentoo.org> Package-Manager: Portage-2.3.78, Repoman-2.3.17 games-emulation/desmume/desmume-0.9.11-r2.ebuild | 37 ++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/games-emulation/desmume/desmume-0.9.11-r2.ebuild b/games-emulation/desmume/desmume-0.9.11-r2.ebuild new file mode 100644 index 00000000000..964f794fb7f --- /dev/null +++ b/games-emulation/desmume/desmume-0.9.11-r2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit xdg + +DESCRIPTION="Nintendo DS emulator" +HOMEPAGE="http://desmume.org/" +SRC_URI="mirror://sourceforge/desmume/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + dev-libs/zziplib + gnome-base/libglade + media-libs/libsdl[joystick,opengl,video] + sys-libs/zlib + virtual/opengl + x11-libs/agg + >=x11-libs/gtk+-2.8.0:2" +DEPEND="${RDEPEND} + dev-util/intltool + virtual/pkgconfig" + +DOCS=( AUTHORS ChangeLog README README.LIN ) + +# fix QA compiler warning, see +# https://sourceforge.net/p/desmume/patches/172/ +PATCHES=( + "${FILESDIR}/${P}-fix-pointer-conversion-warning.diff" + "${FILESDIR}/${P}-gcc6.patch" + "${FILESDIR}/${P}-gcc7.patch" +)