forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lxqt-base/lxqt-globalkeys: Version bump to 0.11.0
Package-Manager: portage-2.3.1
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST lxqt-globalkeys-0.10.0.tar.xz 51576 SHA256 9a9d6a0299a26f91d391a601123e78e18cbe56ee6086cc27ccf800920e146e1a SHA512 2ff76629f956edaf2196435c618d095f8af2c736709406d4fff350ed3e78ae94fb30960d5f218cb5ec8de665b292e8c506830da20ae9752788196ea6ffa69265 WHIRLPOOL 7ff13d5075b9f4a2322b7a5ec2ae12c38615d505f32924535cdd6026ab34c54c8a965dd794f6bbb77c38342ea84f06afc990a58b966fbfc5f27b10c61677e000 | ||
DIST lxqt-globalkeys-0.11.0.tar.xz 50480 SHA256 454ba7dd58180576032c1cfa21c576237b0aa0ea509cb47aadc21d1fbadc1354 SHA512 165c22d60a0d21cf25e36429be5ef0daab86329b0c10a1be67cf90cda817ebc409c0ac7c383ff10c51e4dd8194e799af8af9b3affd74dea49dcc93d05fb6cb33 WHIRLPOOL 97ecc7e0fc76f555e17c59f92a985b255fa1a2ce2692ef3d8eba63e7fab1c8c736858922dfe47637769a4e1ab06114549ddb2166a1f7068c9bca7e7eef70271a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
inherit cmake-utils | ||
|
||
DESCRIPTION="Daemon and library for global keyboard shortcuts registration" | ||
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="GPL-2 LGPL-2.1+" | ||
SLOT="0" | ||
|
||
RDEPEND=" | ||
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} | ||
>=dev-libs/libqtxdg-1.0.0 | ||
x11-libs/libICE | ||
x11-libs/libSM | ||
x11-libs/libX11 | ||
x11-libs/libXext | ||
" | ||
DEPEND="${RDEPEND} | ||
dev-qt/linguist-tools:5 | ||
" | ||
|
||
src_configure() { | ||
local mycmakeargs=( -DPULL_TRANSLATIONS=OFF ) | ||
cmake-utils_src_configure | ||
} |