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-policykit: Version bump to 0.11.0
Package-Manager: portage-2.3.1
- Loading branch information
Showing
2 changed files
with
46 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-policykit-0.10.0.tar.xz 14500 SHA256 c8a1843d30697030ecdcf6d328351f954c0349633106d389e2d2e678176c28ce SHA512 f7c7c623fc6bde8555982cee56757166c3ef49a54af2d757b47d4e0a68025b8bd9fba623010d0bd6c67f3b92d3e7d245f066caaed98bbee9eda4b0f76d9f5a48 WHIRLPOOL c586311adcb06ae535390c32395e3819f64e516aca779f3125d6ace5626988c8874d51a53ae869ce927a6f485c865a6d2f3ea5eb3f044f3cf81241a06951f241 | ||
DIST lxqt-policykit-0.11.0.tar.xz 31336 SHA256 d67620385b5ebe3784edc08be7b627fab8748d7cdd870f5cb2405a06f72469fc SHA512 f4c8a154e30df18118444d8caf09bd242aafb17309bba77f1153a6b3db74291d35fe10ffba716293203095bcaa70195414e6b10773f8fe3b48829ab72820e5ae WHIRLPOOL db0b767cdac2f5f1dcec4a5252593d73772d089f449414eba8f7b6e079b96bd25834e4a1a32cb82518b8fca6aa83559b014ce8907f5a84cee0a2545124085623 |
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,45 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
inherit cmake-utils | ||
|
||
DESCRIPTION="LXQt PolKit authentication agent" | ||
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-libs/glib:2 | ||
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 | ||
sys-auth/polkit-qt[qt5(-)]" | ||
DEPEND="${RDEPEND} | ||
dev-qt/linguist-tools:5 | ||
virtual/pkgconfig" | ||
|
||
src_configure() { | ||
local mycmakeargs=( -DPULL_TRANSLATIONS=OFF ) | ||
cmake-utils_src_configure | ||
} | ||
|
||
src_install(){ | ||
cmake-utils_src_install | ||
doman man/*.1 | ||
} |