From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B1344138ACF for ; Sun, 25 Jan 2015 20:56:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A622E0883; Sun, 25 Jan 2015 20:56:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AB929E0883 for ; Sun, 25 Jan 2015 20:56:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D305C340675 for ; Sun, 25 Jan 2015 20:56:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8B07D105D4 for ; Sun, 25 Jan 2015 20:56:47 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1422219372.e1b2cf5516b0843bdb64ba1cd074aec6f6c48695.johu@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kspaceduel/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kspaceduel/kspaceduel-5.9999.ebuild X-VCS-Directories: kde-apps/kspaceduel/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: e1b2cf5516b0843bdb64ba1cd074aec6f6c48695 X-VCS-Branch: master Date: Sun, 25 Jan 2015 20:56:47 +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-Archives-Salt: 7b64d3d0-cfc4-43d0-b6a4-e32331c6ddd9 X-Archives-Hash: acd01717428c16a142c3480b42c68b3b commit: e1b2cf5516b0843bdb64ba1cd074aec6f6c48695 Author: Andreas Sturmlechner gmail com> AuthorDate: Sun Jan 25 14:17:30 2015 +0000 Commit: Johannes Huber gentoo org> CommitDate: Sun Jan 25 20:56:12 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=e1b2cf55 [kde-apps/kspaceduel] Add kf5 ebuild --- kde-apps/kspaceduel/kspaceduel-5.9999.ebuild | 51 ++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/kde-apps/kspaceduel/kspaceduel-5.9999.ebuild b/kde-apps/kspaceduel/kspaceduel-5.9999.ebuild new file mode 100644 index 0000000..f11ee45 --- /dev/null +++ b/kde-apps/kspaceduel/kspaceduel-5.9999.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +EGIT_BRANCH="frameworks" +KDE_HANDBOOK="true" +KDE_SELINUX_MODULE="games" +inherit kde5 + +DESCRIPTION="KDE Space Game" +HOMEPAGE=" + http://www.kde.org/applications/games/kspaceduel/ + http://games.kde.org/game.php?game=kspaceduel +" +KEYWORDS="" +IUSE="" + +DEPEND=" + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdbusaddons) + $(add_frameworks_dep kdelibs4support) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kio) + $(add_frameworks_dep kitemmodels) + $(add_frameworks_dep knewstuff) + $(add_frameworks_dep knotifyconfig) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kwindowsystem) + $(add_frameworks_dep kxmlgui) + $(add_kdeapps_dep libkdegames) + dev-qt/qtdeclarative:5[widgets] + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 + media-libs/phonon[qt5] +" + +RDEPEND="${DEPEND}" + +src_prepare() { + # fix copy-paste (?) error, there are no tests + sed -i "/find_package(Qt5/ s/ Test//" CMakeLists.txt || die + + kde5_src_prepare +}