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 9CD3D139695 for ; Thu, 20 Jul 2017 13:29:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5501E0D1C; Thu, 20 Jul 2017 13:29:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 9F300E0D1C for ; Thu, 20 Jul 2017 13:29:03 +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 CD1B03418CF for ; Thu, 20 Jul 2017 13:29:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DDCD6291E for ; Thu, 20 Jul 2017 13:29:00 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1500557189.e39826373132c100278c3d9ebe0698f367241fef.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/lumina/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/lumina/lumina-1.2.0-r1.ebuild X-VCS-Directories: x11-wm/lumina/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: e39826373132c100278c3d9ebe0698f367241fef X-VCS-Branch: master Date: Thu, 20 Jul 2017 13:29:00 +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: 3eb90c64-4ab3-4b3d-a16e-e6bbbad74d6d X-Archives-Hash: 9fdbf45733069a440306a2ca4e1c7542 commit: e39826373132c100278c3d9ebe0698f367241fef Author: charIes17 arcor de> AuthorDate: Mon Jul 10 05:54:41 2017 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu Jul 20 13:26:29 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3982637 x11-wm/lumina: Revision bump lumina-1.2.0-r1 Package-Manager: Portage-2.3.6, Repoman-2.3.1 Closes: https://github.com/gentoo/gentoo/pull/5002 x11-wm/lumina/lumina-1.2.0-r1.ebuild | 63 ++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/x11-wm/lumina/lumina-1.2.0-r1.ebuild b/x11-wm/lumina/lumina-1.2.0-r1.ebuild new file mode 100644 index 00000000000..a0b45fb1806 --- /dev/null +++ b/x11-wm/lumina/lumina-1.2.0-r1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit qmake-utils +DESCRIPTION="Lumina desktop environment" +HOMEPAGE="http://lumina-desktop.org/" +I18N="161211" +SRC_URI="https://github.com/trueos/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="" + +COMMON_DEPEND="dev-qt/qtcore:5 + dev-qt/qtconcurrent:5 + dev-qt/qtmultimedia:5[widgets] + dev-qt/qtsvg:5 + dev-qt/qtnetwork:5 + dev-qt/qtwidgets:5 + dev-qt/qtx11extras:5 + dev-qt/qtgui:5 + dev-qt/qtdeclarative:5 + x11-libs/libxcb:0 + x11-libs/xcb-util + x11-libs/xcb-util-image + x11-libs/xcb-util-wm" + +DEPEND="$COMMON_DEPEND + dev-qt/linguist-tools:5" + +RDEPEND="$COMMON_DEPEND + || ( virtual/freedesktop-icon-theme + x11-themes/hicolor-icon-theme ) + sys-fs/inotify-tools + x11-misc/numlockx + x11-wm/fluxbox + x11-apps/xbacklight + media-sound/alsa-utils + sys-power/acpi + app-admin/sysstat" + +src_prepare(){ + default + + rm -rf src-qt5/desktop-utils || die + + sed -e "/desktop-utils/d" -i src-qt5/src-qt5.pro || die +} + +src_configure(){ + eqmake5 PREFIX="${EPREFIX}/usr" L_BINDIR="${EPREFIX}/usr/bin" \ + L_ETCDIR="${EPREFIX}/etc" L_LIBDIR="${EPREFIX}/usr/$(get_libdir)" \ + LIBPREFIX="${EPREFIX}/usr/$(get_libdir)" DESTDIR="${D}" CONFIG+=WITH_I18N +} + +src_install(){ + default + mv "${ED%/}"/etc/luminaDesktop.conf{.dist,} || die + rm "${ED%/}"/${PN}-* "${ED%/}"/start-${PN}-desktop || die +}