diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-12-06 03:24:32 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-12-06 23:15:49 +0100 |
commit | 4d1bf5e598bbdbc1fcffdf7386c0b355b9a835b0 (patch) | |
tree | c59525ab2ddeebd6d86c611e2a896b3f1486480e | |
parent | kde-plasma/polkit-kde-agent: Update DESCRIPTION, HOMEPAGE (diff) | |
download | kde-sunset-4d1bf5e598bbdbc1fcffdf7386c0b355b9a835b0.tar.gz kde-sunset-4d1bf5e598bbdbc1fcffdf7386c0b355b9a835b0.tar.bz2 kde-sunset-4d1bf5e598bbdbc1fcffdf7386c0b355b9a835b0.zip |
sys-auth/polkit-qt: SLOT="0-qt4", EAPI-7, 0.112.0_p20190531 snapshot bump
Use cmake.eclass and kde.org.eclass
Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r-- | sys-auth/polkit-qt/Manifest | 1 | ||||
-rw-r--r-- | sys-auth/polkit-qt/polkit-qt-0.112.0_p20190531.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/sys-auth/polkit-qt/Manifest b/sys-auth/polkit-qt/Manifest index f8e02f52..17577ae1 100644 --- a/sys-auth/polkit-qt/Manifest +++ b/sys-auth/polkit-qt/Manifest @@ -1 +1,2 @@ +DIST polkit-qt-0.112.0_p20190531.tar.gz 83492 BLAKE2B e26f5553d6af3ab0eaeab8336389ed8744c16cb7c217d7e2ed3b01bc2d9876f3b3106716e2cc90ba73acae609d8c5ceb85bc6070d1cd3e974f26fcb65022f6bc SHA512 943893aeff94781539de743b258f6cb234704fb5db011356a534dc24c10845b645f588750dd240284d368bf50630387ed4d2a100ddffd92331dd9528da931077 DIST polkit-qt-1-0.112.0_p20160416.tar.xz 64540 BLAKE2B fbc3631585801f42ff92324576a2bd82d61aa5b24317f95e1182c300073a8e746007fa3409127a50d7d3433c5092f56d72e2e579683d08145067d4424c4dfe7e SHA512 90677af780a2bbcb33b6a54702ba96f965eb8561f2636af7aa0146f9b2450f9e89f67e022ffa99742afe50e3d1f570eabfad686e9e08e629a1e662d9f5abf2ea diff --git a/sys-auth/polkit-qt/polkit-qt-0.112.0_p20190531.ebuild b/sys-auth/polkit-qt/polkit-qt-0.112.0_p20190531.ebuild new file mode 100644 index 00000000..cfdb268b --- /dev/null +++ b/sys-auth/polkit-qt/polkit-qt-0.112.0_p20190531.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +COMMIT=55776dc9c51d7153c66402b257f7a0992f9d4ae5 +KDE_ORG_NAME="polkit-qt-1" +inherit cmake kde.org + +DESCRIPTION="Qt wrapper around polkit-1 client libraries" +HOMEPAGE="https://api.kde.org/kdesupport-api/polkit-qt-1-apidocs/" +SRC_URI="https://invent.kde.org/libraries/${KDE_ORG_NAME}/-/archive/${COMMIT}/${KDE_ORG_NAME}-${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${KDE_ORG_NAME}-${COMMIT}" + +LICENSE="LGPL-2" +SLOT="0-qt4" +KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86" +IUSE="debug" + +RDEPEND=" + dev-libs/glib:2 + dev-qt/qtcore:4[glib] + dev-qt/qtdbus:4 + dev-qt/qtgui:4[glib] + >=sys-auth/polkit-0.103 +" +DEPEND="${RDEPEND} + !<sys-auth/polkit-qt-0.113:0 +" + +DOCS=( AUTHORS README README.porting TODO ) + +src_configure() { + local mycmakeargs=( + -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc + -DBUILD_EXAMPLES=OFF + -DUSE_QT4=ON + ) + cmake_src_configure +} |