app-emulation/punes: remove old.
authorAzamat H. Hackimov <azamat.hackimov@gmail.com>
Sun, 3 Mar 2019 15:23:26 +0000 (18:23 +0300)
committerPatrice Clement <monsieurp@gentoo.org>
Mon, 11 Mar 2019 10:13:34 +0000 (11:13 +0100)
Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
app-emulation/punes/Manifest
app-emulation/punes/files/punes-0.102-qt-5.11-fix.patch [deleted file]
app-emulation/punes/punes-0.102.ebuild [deleted file]

index 146ce82d3567b7de314be8295babc9a52e3494d9..8dc1779acd5bbb5e024bb3e3fc5c2a01dfb1883c 100644 (file)
@@ -1,2 +1 @@
-DIST punes-0.102.tar.gz 4670534 BLAKE2B 04576110e4fcd9aeaa3dfb6812ab7a21305200c82651be00defcb59b91374b155b279818f2e09d217841aa8567c41e06067252538fb68b7b907d5ab29b02c678 SHA512 dff95b25f64ed03060b6dd187d7a283acfddb6bea4168df5be4d309bd6aabdcaa5d0ea0312d0824205bf134cd0ddabf014e82a81c8a901a59258475ec24bd394
 DIST punes-0.103.tar.gz 5366838 BLAKE2B cb4a9a1336293891e06d573f68c52962e79220e7024fad716a957f5423a72703a34efc3fb6129dbe9ffde2c96fe7abd2a1ad4a622aaca89e90f6a2d5af8c1a53 SHA512 db0fbc075b9fd46be8013b17c03fd7abd12b209ce166557c83283c917e53224712ba5838cd8b9e7fad3d21271f29e475460996dd9800b9f759602e289bad4205
diff --git a/app-emulation/punes/files/punes-0.102-qt-5.11-fix.patch b/app-emulation/punes/files/punes-0.102-qt-5.11-fix.patch
deleted file mode 100644 (file)
index 1ac5cca..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-From 46620c32ff37a7968c977e4b3cde8d601807702c Mon Sep 17 00:00:00 2001
-From: fhorse <punes.development@gmail.com>
-Date: Sun, 15 Jul 2018 13:30:15 +0200
-Subject: [PATCH] Corretto errore di compilazione con le Qt5.
-
----
- src/gui/dlgCheats.cpp | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/gui/dlgCheats.cpp b/src/gui/dlgCheats.cpp
-index 9ff904d2..b7c6c52a 100644
---- a/src/gui/dlgCheats.cpp
-+++ b/src/gui/dlgCheats.cpp
-@@ -25,6 +25,7 @@
- #include <QtWidgets/QMessageBox>
- #include <QtWidgets/QCheckBox>
- #include <QtWidgets/QFileDialog>
-+#include <QtWidgets/QButtonGroup>
- #endif
- #include "dlgCheats.moc"
- #include "mainWindow.hpp"
diff --git a/app-emulation/punes/punes-0.102.ebuild b/app-emulation/punes/punes-0.102.ebuild
deleted file mode 100644 (file)
index 92b1d19..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools xdg-utils
-
-DESCRIPTION="Nintendo Entertainment System (NES) emulator"
-HOMEPAGE="https://github.com/punesemu/puNES"
-SRC_URI="https://github.com/punesemu/puNES/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="cg"
-
-RDEPEND="
-       dev-qt/qtcore:5
-       dev-qt/qtgui:5
-       dev-qt/qtwidgets:5
-       cg? ( media-gfx/nvidia-cg-toolkit )
-       media-libs/alsa-lib
-       media-libs/libsdl[opengl]
-       virtual/opengl"
-
-DEPEND="
-       ${RDEPEND}
-       virtual/pkgconfig"
-
-S="${WORKDIR}/puNES-${PV}"
-
-PATCHES=( "${FILESDIR}/${P}-qt-5.11-fix.patch" )
-
-src_prepare() {
-       default
-
-       sed -i "/update-desktop-database/d" misc/Makefile.am || die
-       eautoreconf
-       # FIXME why eautoreconf can't handle this?
-       cd "src/extra/lib7zip-1.6.5" || die
-       eautoreconf
-}
-
-src_configure() {
-       econf \
-               --enable-qt5 \
-               $(use_with cg opengl-nvidia-cg)
-}
-
-pkg_postinst() {
-       xdg_desktop_database_update
-}
-
-pkg_postrm() {
-       xdg_desktop_database_update
-}