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 5140E1388C1 for ; Sat, 28 Nov 2015 17:36:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A891A21C0D4; Sat, 28 Nov 2015 17:36:07 +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 D130C21C0D0 for ; Sat, 28 Nov 2015 17:36:06 +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 BF6F83408A2 for ; Sat, 28 Nov 2015 17:36:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 73C1FA95 for ; Sat, 28 Nov 2015 17:36:02 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1448525973.6f5560139f66739a9182d8aef59172e8225ed7c8.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: lxqt-base/lxqt-common/ X-VCS-Repository: repo/gentoo X-VCS-Files: lxqt-base/lxqt-common/lxqt-common-0.10.0.ebuild X-VCS-Directories: lxqt-base/lxqt-common/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 6f5560139f66739a9182d8aef59172e8225ed7c8 X-VCS-Branch: master Date: Sat, 28 Nov 2015 17:36:02 +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: 86c1cd7a-a26a-460c-8282-59b9598b42fc X-Archives-Hash: 08f524e8299b50ff08b8413f50896260 commit: 6f5560139f66739a9182d8aef59172e8225ed7c8 Author: Paolo Pedroni users noreply github com> AuthorDate: Tue Nov 24 11:01:52 2015 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Nov 26 08:19:33 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f556013 lxqt-base/lxqt-common: Version bump to 0.10.0 Thanks to Alpha Bravo ungwana.de> in bug #564718 lxqt-base/lxqt-common/lxqt-common-0.10.0.ebuild | 30 +++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/lxqt-base/lxqt-common/lxqt-common-0.10.0.ebuild b/lxqt-base/lxqt-common/lxqt-common-0.10.0.ebuild new file mode 100644 index 0000000..7748d34 --- /dev/null +++ b/lxqt-base/lxqt-common/lxqt-common-0.10.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit cmake-utils + +DESCRIPTION="LXQt common resources" +HOMEPAGE="http://lxqt.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git" +else + SRC_URI="https://downloads.lxqt.org/lxqt/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +LICENSE="LGPL-2.1+" +SLOT="0" + +DEPEND=">=lxqt-base/liblxqt-0.10.0" +RDEPEND="${DEPEND}" +PDEPEND=">=lxqt-base/lxqt-session-0.10.0" + +src_install() { + cmake-utils_src_install + dodir "/etc/X11/Sessions" + dosym "/usr/bin/startlxqt" "/etc/X11/Sessions/lxqt" +}