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 DA88413835D for ; Thu, 25 Mar 2021 23:31:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55678E0844; Thu, 25 Mar 2021 23:31:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 34A1AE0839 for ; Thu, 25 Mar 2021 23:31:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 409A9340D8E for ; Thu, 25 Mar 2021 23:31:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B645637 for ; Thu, 25 Mar 2021 23:31:15 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1616715066.789c1cc9ef9bbfac4175e8cfdddeb9fbb8e5b07b.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/fceux/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/fceux/fceux-2.2.3-r2.ebuild X-VCS-Directories: games-emulation/fceux/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 789c1cc9ef9bbfac4175e8cfdddeb9fbb8e5b07b X-VCS-Branch: master Date: Thu, 25 Mar 2021 23:31:15 +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: d29a2a91-c450-424d-b705-0b9afbc382a5 X-Archives-Hash: 9811a934e017f28c49f9c01738c4fa02 commit: 789c1cc9ef9bbfac4175e8cfdddeb9fbb8e5b07b Author: Conrad Kostecki gentoo org> AuthorDate: Thu Mar 25 23:24:11 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu Mar 25 23:31:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=789c1cc9 games-emulation/fceux: drop old version Dropping old version which does not support slotted lua. Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> games-emulation/fceux/fceux-2.2.3-r2.ebuild | 61 ----------------------------- 1 file changed, 61 deletions(-) diff --git a/games-emulation/fceux/fceux-2.2.3-r2.ebuild b/games-emulation/fceux/fceux-2.2.3-r2.ebuild deleted file mode 100644 index 5c5d141a803..00000000000 --- a/games-emulation/fceux/fceux-2.2.3-r2.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) - -inherit python-any-r1 desktop scons-utils toolchain-funcs - -DESCRIPTION="A portable Famicom/NES emulator, an evolution of the original FCE Ultra" -HOMEPAGE="http://fceux.com/" -SRC_URI="mirror://sourceforge/fceultra/${P}.src.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="gtk logo +lua +opengl" - -RDEPEND=" - lua? ( dev-lang/lua:0 ) - media-libs/libsdl[opengl?,video] - logo? ( media-libs/gd[png] ) - opengl? ( virtual/opengl ) - gtk? ( x11-libs/gtk+:3 ) - sys-libs/zlib[minizip] -" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-2.2.2-warnings.patch - "${FILESDIR}/${P}-python3.patch" -) - -src_prepare() { - default - - tc-export CC CXX -} - -src_compile() { - escons \ - GTK=0 \ - CREATE_AVI=1 \ - SYSTEM_LUA=1 \ - SYSTEM_MINIZIP=1 \ - GTK3=$(usex gtk 1 0) \ - LOGO=$(usex logo 1 0) \ - OPENGL=$(usex opengl 1 0) \ - LUA=$(usex lua 1 0) -} - -src_install() { - dobin bin/fceux - - doman documentation/fceux.6 - docompress -x /usr/share/doc/${PF}/documentation /usr/share/doc/${PF}/fceux.chm - dodoc -r Authors changelog.txt TODO-SDL bin/fceux.chm documentation - rm -f "${D}/usr/share/doc/${PF}/documentation/fceux.6" - make_desktop_entry fceux FCEUX - doicon fceux.png -}