diff options
author | E. Liddell <ejlddll@warpmail.net> | 2020-05-02 16:35:47 -0400 |
---|---|---|
committer | E. Liddell <ejlddll@warpmail.net> | 2020-05-02 16:35:47 -0400 |
commit | cb75382958ee83980cc8643be9a8c835b5ce615d (patch) | |
tree | 66bd2e70345a89a24cb872ad25c080fd8fd6abc3 /trinity-base/tdesu | |
parent | ffde2042a0595a8bd6e421c94ed74284eba05c82 (diff) | |
download | tde-packaging-gentoo-cb75382958ee83980cc8643be9a8c835b5ce615d.tar.gz tde-packaging-gentoo-cb75382958ee83980cc8643be9a8c835b5ce615d.zip |
14.0.7 ebuilds for tdebase, tdeartwork, and dependencies (auto-generated)
Diffstat (limited to 'trinity-base/tdesu')
-rw-r--r-- | trinity-base/tdesu/tdesu-14.0.7.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/trinity-base/tdesu/tdesu-14.0.7.ebuild b/trinity-base/tdesu/tdesu-14.0.7.ebuild new file mode 100644 index 00000000..a1da5610 --- /dev/null +++ b/trinity-base/tdesu/tdesu-14.0.7.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 Gentoo Foundation +# Copyright 2020 The Trinity Desktop Project +# Distributed under the terms of the GNU General Public License v2 +EAPI="7" +TRINITY_MODULE_NAME="tdebase" + +inherit trinity-meta-2 + +DESCRIPTION="Trinity gui for su(1) or sudo" +IUSE="sudo" +KEYWORDS="~amd64 ~x86" + +DEPEND="sudo? ( app-admin/sudo )" +RDEPEND="${DEPEND}" + +src_configure () { + mycmakeargs=( + -DWITH_SUDO_TDESU_BACKEND="$(usex sudo)" + ) + + trinity-meta-2_src_configure +} + +pkg_postinst () { + if use sudo; then + einfo "Remember that the sudo use flag sets only the default superuser command." + einfo "It can be overriden on a user-level by adding:" + einfo " [super-user-command]" + einfo " super-user-command=su" + einfo "to the kdeglobals config file which is should be usually" + einfo "located in the ~/.trinity/share/config/ directory." + + fi +} |