diff options
author | Chris <xchrisx@uber.space> | 2020-01-08 15:31:12 +0100 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2020-01-18 16:31:46 +0000 |
commit | e05ee6fdde9c2c4b00dbe2c4e5a82da8141a64e2 (patch) | |
tree | 73db370e988028d79dced3a0582f261703ebfad0 /trinity-base/kcheckpass | |
parent | 6bbd4e98cf417d8be962fb2896b95dac248f2438 (diff) | |
download | tde-packaging-gentoo-e05ee6fdde9c2c4b00dbe2c4e5a82da8141a64e2.tar.gz tde-packaging-gentoo-e05ee6fdde9c2c4b00dbe2c4e5a82da8141a64e2.zip |
Live ebuilds: Port to EAPI7 and cleanup - Round 2.
This time: certmanager, dcoprss, drkonqi, kappfinder, kate, kcalc,
kcharselect, kcheckpass, kdialog, kfind, kgpg, khelpcenter,
khotkeys, klipper, kmenuedit, knetattach, konsole, kpersonalizer,
kreadconfig, ksmserver, ksysguard, ktip, librss
Add also lm_sensors use flag to ksysguard.
Signed-off-by: Chris <xchrisx@uber.space>
Diffstat (limited to 'trinity-base/kcheckpass')
-rw-r--r-- | trinity-base/kcheckpass/kcheckpass-9999.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/trinity-base/kcheckpass/kcheckpass-9999.ebuild b/trinity-base/kcheckpass/kcheckpass-9999.ebuild index ce4b8640..977be3ab 100644 --- a/trinity-base/kcheckpass/kcheckpass-9999.ebuild +++ b/trinity-base/kcheckpass/kcheckpass-9999.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2017 Gentoo Foundation +# Copyright 2020 The Trinity Desktop Project # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="5" +EAPI="7" TRINITY_MODULE_NAME="tdebase" -inherit trinity-meta +inherit trinity-meta-2 DESCRIPTION="A simple password checker, used by any software in need of user authentication." -KEYWORDS= IUSE="pam" RDEPEND=" @@ -16,8 +16,8 @@ DEPEND="${RDEPEND}" src_configure() { mycmakeargs=( - $(cmake-utils_use_with pam PAM) + -DWITH_PAM="$(usex pam)" ) - trinity-meta_src_configure + trinity-meta-2_src_configure } |