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 D87671395E2 for ; Thu, 17 Nov 2016 11:51:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E03B6E0B77; Thu, 17 Nov 2016 11:51:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C91C0E0B77 for ; Thu, 17 Nov 2016 11:51:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 99BF4341062 for ; Thu, 17 Nov 2016 11:51:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 79C0448A for ; Thu, 17 Nov 2016 11:51:44 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1479383490.e650f65ab0cd48473723c54b41c99cd22a2eaa4e.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/qt5ct/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/qt5ct/qt5ct-0.27.ebuild X-VCS-Directories: x11-misc/qt5ct/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: e650f65ab0cd48473723c54b41c99cd22a2eaa4e X-VCS-Branch: master Date: Thu, 17 Nov 2016 11:51:44 +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: ec47a417-71e7-4460-8cbe-6877e9932b75 X-Archives-Hash: 7884b4c71478910411bd3d605f79ccb9 commit: e650f65ab0cd48473723c54b41c99cd22a2eaa4e Author: Ilya Tumaykin gmail com> AuthorDate: Thu Nov 17 03:44:20 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Nov 17 11:51:30 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e650f65a x11-misc/qt5ct: remove old Package-Manager: portage-2.3.2 x11-misc/qt5ct/qt5ct-0.27.ebuild | 49 ---------------------------------------- 1 file changed, 49 deletions(-) diff --git a/x11-misc/qt5ct/qt5ct-0.27.ebuild b/x11-misc/qt5ct/qt5ct-0.27.ebuild deleted file mode 100644 index 92a40e0..00000000 --- a/x11-misc/qt5ct/qt5ct-0.27.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -inherit qmake-utils - -DESCRIPTION="Qt5 configuration tool, similar to qtconfig for Qt4" -HOMEPAGE="https://sourceforge.net/projects/qt5ct/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -RDEPEND=" - dev-qt/qtcore:5 - dev-qt/qtgui:5=[dbus] - dev-qt/qtwidgets:5 -" -DEPEND="${RDEPEND} - dev-qt/linguist-tools:5 -" - -src_configure() { - eqmake5 ${PN}.pro -} - -src_install() { - emake INSTALL_ROOT="${D}" install - einstalldocs - - echo 'QT_QPA_PLATFORMTHEME=qt5ct' > "${T}"/98${PN} || die - doenvd "${T}"/98${PN} -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]]; then - ewarn "qt5ct configuration won't be applied to the currently running sessions." - ewarn "Please relogin." - fi - if ! has_version 'dev-qt/qtsvg:5'; then - echo - elog "For SVG icon themes, please install 'dev-qt/qtsvg:5'." - echo - fi -}