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 48C1C138206 for ; Tue, 16 Jan 2018 23:17:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 453A0E0908; Tue, 16 Jan 2018 23:17:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 20B78E0908 for ; Tue, 16 Jan 2018 23:17:54 +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 62B06335C34 for ; Tue, 16 Jan 2018 23:17:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B511D1B9 for ; Tue, 16 Jan 2018 23:17:51 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1516144650.0ca759e5965aaeafb2747bcb3f911cb0c1d2627b.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/kuroo/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/kuroo/kuroo-9999.ebuild X-VCS-Directories: app-portage/kuroo/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0ca759e5965aaeafb2747bcb3f911cb0c1d2627b X-VCS-Branch: master Date: Tue, 16 Jan 2018 23:17:51 +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: 9a1e7de5-e0db-4f06-894d-8f132be64110 X-Archives-Hash: 4c0760458debeec9110babf88a0854d0 commit: 0ca759e5965aaeafb2747bcb3f911cb0c1d2627b Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Jan 16 23:14:56 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Jan 16 23:17:30 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ca759e5 app-portage/kuroo: Add Qt5-based live ebuild Bug: https://bugs.gentoo.org/633506 Thanks-to: Andrew Schenck users.sourceforge.net> Package-Manager: Portage-2.3.19, Repoman-2.3.6 app-portage/kuroo/kuroo-9999.ebuild | 56 +++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/app-portage/kuroo/kuroo-9999.ebuild b/app-portage/kuroo/kuroo-9999.ebuild new file mode 100644 index 00000000000..bb73238c0ec --- /dev/null +++ b/app-portage/kuroo/kuroo-9999.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +ESVN_REPO_URI="http://kuroo.svn.sourceforge.net/svnroot/kuroo/kuroo4/trunk" +ESVN_PROJECT="kuroo4" +inherit cmake-utils subversion + +DESCRIPTION="Graphical Portage frontend based on KDE Frameworks" +HOMEPAGE="http://kuroo.sourceforge.net/" + +LICENSE="GPL-2" +KEYWORDS="" +SLOT="0" +IUSE="" + +DEPEND=" + dev-db/sqlite:3 + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + kde-frameworks/extra-cmake-modules:5 + kde-frameworks/kconfig:5 + kde-frameworks/kconfigwidgets:5 + kde-frameworks/kcoreaddons:5 + kde-frameworks/kdelibs4support:5 + kde-frameworks/ki18n:5 + kde-frameworks/kio:5 + kde-frameworks/kitemviews:5 + kde-frameworks/knotifications:5 + kde-frameworks/ktextwidgets:5 + kde-frameworks/kwidgetsaddons:5 + kde-frameworks/kxmlgui:5 + kde-frameworks/threadweaver:5 +" +RDEPEND="${DEPEND} + app-portage/gentoolkit + kde-apps/kompare:5 + kde-plasma/kde-cli-tools:5[kdesu] +" + +pkg_postinst() { + if ! has_version app-admin/logrotate ; then + elog "Installing app-admin/logrotate is recommended to keep" + elog "portage's summary.log size reasonable to view in the history page." + fi + + xdg_mimeinfo_database_update + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_mimeinfo_database_update + xdg_desktop_database_update +}