summaryrefslogtreecommitdiff
path: root/app-emulation/qtemu
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-02-24 19:58:07 +0000
committerV3n3RiX <venerix@redcorelinux.org>2018-02-24 19:58:07 +0000
commit99abbc5e5a6ecd3fc981b45646fd8cb5d320377b (patch)
treeda76713365257a445f3ae3b95470917f59d46728 /app-emulation/qtemu
parent4935506e9a5cbfabd37c64093eac5f36c2ff0017 (diff)
gentoo resync : 24.02.2018
Diffstat (limited to 'app-emulation/qtemu')
-rw-r--r--app-emulation/qtemu/Manifest4
-rw-r--r--app-emulation/qtemu/files/1.0.5-help_and_translation_paths.patch63
-rw-r--r--app-emulation/qtemu/metadata.xml8
-rw-r--r--app-emulation/qtemu/qtemu-1.0.5.ebuild31
4 files changed, 0 insertions, 106 deletions
diff --git a/app-emulation/qtemu/Manifest b/app-emulation/qtemu/Manifest
deleted file mode 100644
index 1b4147e47fc3..000000000000
--- a/app-emulation/qtemu/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX 1.0.5-help_and_translation_paths.patch 2730 BLAKE2B 45e60c51dc6f8862619e6d391f6cc1805572ffa3a5aaaeb20fd45ab8cae6f7aac9783c358e26fb16a68b772852ae644bca95bd77d8cbdc4a46e85ecec5ae2ed7 SHA512 f9e83597f05717196b1fa3eedd951aaa12e69cf5a66b296481463a96877e556f61fcab247e2cf3e476aec96e6dcfb70f3968b4458e95b288985f68f3d85a8aaa
-DIST qtemu-1.0.5.tar.bz2 555872 BLAKE2B 546a1ec0071ef42b2782df5970b563e48b2dd659cf02a0e27dfdfed1df1f43f1d503dc379195eef9390c7098d826454a80f65fa6913506fb1ca4be05eecd79d2 SHA512 c8380acea500453053d8d2a9cc3eecb51c766d5743a22a7fbe13d3bd5d543ab63ab715ac2ffbd2389f24c699ea81ca3e0584c7578a9799300cef514886d1cee8
-EBUILD qtemu-1.0.5.ebuild 697 BLAKE2B 0a1e84a910cf26010e2d31f20cc0608fe74724f22ff695c5299078c7c8c38dd95f938c231a0e39c3ff5615618589f14aeb46a17e6e35bf63b8cc85316967b005 SHA512 a523434e18e5e8a483a6544d50d8090c4a71607ded0ebd30d8c976e87d9c83a0d939d4676b3ed7a30aa6b3df0fba247df8125a316ca2e406d40348a85c842c4e
-MISC metadata.xml 242 BLAKE2B 23374b7610555573df9aa7e4a3f5a780393cf58d4d9fb7ffc2272ccd9cd234a238d7e44886ddad41a7df4c3b6669d17ba687e92c425670c9f657649b9055a3d5 SHA512 fc51131611752aad3076c1c9708e486471670e5c726f341f8f9c13b001282fb5972305accddeba1a7b3affbab60a8b91f0f7320a85dcfc9631f8c81140ab186b
diff --git a/app-emulation/qtemu/files/1.0.5-help_and_translation_paths.patch b/app-emulation/qtemu/files/1.0.5-help_and_translation_paths.patch
deleted file mode 100644
index 8fc1680aacb0..000000000000
--- a/app-emulation/qtemu/files/1.0.5-help_and_translation_paths.patch
+++ /dev/null
@@ -1,63 +0,0 @@
-diff -Naur qtemu-1.0.5.orig/CMakeLists.txt qtemu-1.0.5/CMakeLists.txt
---- qtemu-1.0.5.orig/CMakeLists.txt 2008-02-22 19:32:43.000000000 +0100
-+++ qtemu-1.0.5/CMakeLists.txt 2008-02-22 19:35:29.000000000 +0100
-@@ -114,7 +114,7 @@
- DEPENDS ${QM_FILES})
-
- INSTALL (FILES ${QM_FILES}
-- DESTINATION translations)
-+ DESTINATION share/qtemu/translations)
- # translation end
-
- SET(QT_USE_QTXML)
-@@ -146,13 +146,13 @@
- )
-
- FILE(GLOB helpfiles "${CMAKE_CURRENT_SOURCE_DIR}/help/*.png")
--INSTALL(FILES ${helpfiles} DESTINATION help)
-+INSTALL(FILES ${helpfiles} DESTINATION share/qtemu/help)
-
--INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/help/main.htm DESTINATION help)
-+INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/help/main.htm DESTINATION share/qtemu/help)
-
- FILE(GLOB helpfiles_de "${CMAKE_CURRENT_SOURCE_DIR}/help/de/*.png")
--INSTALL(FILES ${helpfiles_de} DESTINATION help/de)
-+INSTALL(FILES ${helpfiles_de} DESTINATION share/qtemu/help/de)
-
--INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/help/de/main.htm DESTINATION help/de)
-+INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/help/de/main.htm DESTINATION share/qtemu/help/de)
-
- INSTALL(TARGETS qtemu DESTINATION bin)
-diff -Naur qtemu-1.0.5.orig/helpwindow.cpp qtemu-1.0.5/helpwindow.cpp
---- qtemu-1.0.5.orig/helpwindow.cpp 2008-02-22 19:32:44.000000000 +0100
-+++ qtemu-1.0.5/helpwindow.cpp 2008-02-22 19:33:26.000000000 +0100
-@@ -80,7 +80,7 @@
- return testUrl;
-
- //check for case when qtemu executable is in bin/ (installed on linux)
-- testUrl = QUrl(QCoreApplication::applicationDirPath()+"/../help/" + locale + "/main.htm");
-+ testUrl = QUrl(QCoreApplication::applicationDirPath()+"/../share/qtemu/help/" + locale + "/main.htm");
- if (QFile::exists(testUrl.toString()))
- return testUrl;
- }
-@@ -96,7 +96,7 @@
- return testUrl;
-
- //check for case when qtemu executable is in bin/ (installed on linux)
-- testUrl = QUrl(QCoreApplication::applicationDirPath()+"/../help/main.htm");
-+ testUrl = QUrl(QCoreApplication::applicationDirPath()+"/../share/qtemu/help/main.htm");
- if (QFile::exists(testUrl.toString()))
- return testUrl;
-
-diff -Naur qtemu-1.0.5.orig/main.cpp qtemu-1.0.5/main.cpp
---- qtemu-1.0.5.orig/main.cpp 2008-02-22 19:32:43.000000000 +0100
-+++ qtemu-1.0.5/main.cpp 2008-02-22 19:36:32.000000000 +0100
-@@ -45,7 +45,7 @@
- translator.load(path);
- else
- {
-- path = QCoreApplication::applicationDirPath()+"/../translations/qtemu_" + locale + ".qm";
-+ path = QCoreApplication::applicationDirPath()+"/../share/qtemu/translations/qtemu_" + locale + ".qm";
- if (QFile::exists(path))
- translator.load(path);
- }
diff --git a/app-emulation/qtemu/metadata.xml b/app-emulation/qtemu/metadata.xml
deleted file mode 100644
index e2c549e0585f..000000000000
--- a/app-emulation/qtemu/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <upstream>
- <remote-id type="sourceforge">qtemu</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/app-emulation/qtemu/qtemu-1.0.5.ebuild b/app-emulation/qtemu/qtemu-1.0.5.ebuild
deleted file mode 100644
index 41282431fae0..000000000000
--- a/app-emulation/qtemu/qtemu-1.0.5.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils cmake-utils
-
-DESCRIPTION="A graphical user interface for QEMU written in Qt4"
-HOMEPAGE="http://qtemu.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2 LGPL-2.1 CC-BY-3.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="dev-qt/qtcore:4
- dev-qt/qtgui:4"
-RDEPEND="${DEPEND}
- app-emulation/qemu"
-
-DOCS=( ChangeLog README )
-PATCHES=(
- "${FILESDIR}/${PV}-help_and_translation_paths.patch"
-)
-
-src_install() {
- cmake-utils_src_install
- doicon "${S}/images/${PN}.ico"
- make_desktop_entry "qtemu" "QtEmu" "${PN}.ico" "Qt;Utility;Emulator"
-}