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 255061388E5 for ; Wed, 29 Oct 2014 12:18:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 11CE6E087F; Wed, 29 Oct 2014 12:18:44 +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 A94DFE087F for ; Wed, 29 Oct 2014 12:18:43 +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 6065634038E for ; Wed, 29 Oct 2014 12:18:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0BCD48FFC for ; Wed, 29 Oct 2014 12:18:41 +0000 (UTC) From: "Jauhien Piatlicki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jauhien Piatlicki" Message-ID: <1414585106.6764aba217997948d99f255d000bbfa3b32bbe60.jauhien@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: lxqt-base/lxqt-globalkeys/ X-VCS-Repository: proj/qt X-VCS-Files: lxqt-base/lxqt-globalkeys/Manifest lxqt-base/lxqt-globalkeys/lxqt-globalkeys-0.8.0.ebuild X-VCS-Directories: lxqt-base/lxqt-globalkeys/ X-VCS-Committer: jauhien X-VCS-Committer-Name: Jauhien Piatlicki X-VCS-Revision: 6764aba217997948d99f255d000bbfa3b32bbe60 X-VCS-Branch: master Date: Wed, 29 Oct 2014 12:18:41 +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: 24a86217-93f0-422d-b404-a2f9c67f24c3 X-Archives-Hash: f575a862f29f0e4c0c3168b50d975cb1 commit: 6764aba217997948d99f255d000bbfa3b32bbe60 Author: Jauhien Piatlicki gentoo org> AuthorDate: Wed Oct 29 12:18:26 2014 +0000 Commit: Jauhien Piatlicki gentoo org> CommitDate: Wed Oct 29 12:18:26 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=6764aba2 [lxqt-base/lxqt-globalkeys] 0.8.0 release --- lxqt-base/lxqt-globalkeys/Manifest | 1 + .../lxqt-globalkeys/lxqt-globalkeys-0.8.0.ebuild | 44 ++++++++++++++++++++++ 2 files changed, 45 insertions(+) diff --git a/lxqt-base/lxqt-globalkeys/Manifest b/lxqt-base/lxqt-globalkeys/Manifest new file mode 100644 index 0000000..d396381 --- /dev/null +++ b/lxqt-base/lxqt-globalkeys/Manifest @@ -0,0 +1 @@ +DIST lxqt-globalkeys-0.8.0.tar.xz 52676 SHA256 dd15a5d6f5818ddd00a7b3fbde483bbd8ce88d2dfaa4a6e98ca54c7492cbd713 SHA512 1afb5b1080c2005545dd74b064b7b9da653ae8a8107898e2f4303ec7e77b4e8377094dc50dc3d36b07521fa6dbbf1b7cb812444d62a429b20428667da491a6e2 WHIRLPOOL c17c625163c509ab1ccd732c640eb67e72cc0f59ff5b285b360e55b19175ff9b5abe5cf443d077066aaeb9ea86c86887fde41fa3d1e76e6b1065bbdf07307d68 diff --git a/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-0.8.0.ebuild b/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-0.8.0.ebuild new file mode 100644 index 0000000..68970b2 --- /dev/null +++ b/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-0.8.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +inherit cmake-utils + +DESCRIPTION="Daemon and library for global keyboard shortcuts registration" +HOMEPAGE="http://www.lxqt.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git" +else + SRC_URI="http://lxqt.org/downloads/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-2 LGPL-2.1+" +SLOT="0" + +DEPEND=" + dev-qt/linguist-tools:5 + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + dev-qt/qtx11extras:5 + dev-qt/qtxml:5 + ~lxqt-base/liblxqt-${PV} + >=razorqt-base/libqtxdg-1.0.0 + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXext +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DUSE_QT5=ON + ) + cmake-utils_src_configure +}