diff options
author | ormorph <[email protected]> | 2022-10-28 12:41:56 +0200 |
---|---|---|
committer | ormorph <[email protected]> | 2022-10-28 19:43:12 +0200 |
commit | 345c52699ff344a3bd46c0ee5df765dc404ac3d1 (patch) | |
tree | 752a6cb2512e0573cc46d7e89d3575a7a91840c6 /trinity-base/tdesu | |
parent | cc26a6f102600556b4f96fd651ac2b67482e6932 (diff) | |
download | tde-packaging-gentoo-345c52699ff344a3bd46c0ee5df765dc404ac3d1.tar.gz tde-packaging-gentoo-345c52699ff344a3bd46c0ee5df765dc404ac3d1.zip |
Added version 14.0.13
Signed-off-by: ormorph <[email protected]>
Diffstat (limited to 'trinity-base/tdesu')
-rw-r--r-- | trinity-base/tdesu/Manifest | 1 | ||||
-rw-r--r-- | trinity-base/tdesu/tdesu-14.0.13.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/trinity-base/tdesu/Manifest b/trinity-base/tdesu/Manifest index 90cbd655..2b513f21 100644 --- a/trinity-base/tdesu/Manifest +++ b/trinity-base/tdesu/Manifest @@ -1 +1,2 @@ DIST tdebase-trinity-14.0.12.tar.xz 30570656 BLAKE2B cc230548e567f530c4c95fbd2a670a1aff2f617cb4319dbaff1f3537cb9dfea1c5136fa9cbd30a95017fbfa7fe267485c7dd2161661cf4ceca31795a9a815526 SHA512 b1071cb4ea8dedb3b4605c3a99e6d1cb28eb44634a2118607e32ea356b55ebaeab3566d98e29d2677f431da95ecaacd0a7b6f832aab2ee1f9851f27186fdde25 +DIST tdebase-trinity-14.0.13.tar.xz 30564196 BLAKE2B 0055a5bc7c3e5abc7df6afaf05da2d3b96cb217d191355b76e9ca19fe32c550a0d25dd281ad0d19fc0e8c074793dcfb4b15a59a53f1ff0c11d3351eb93208dcf SHA512 78328f17acb8372ce6b29d18604329191863003bf8d8b89c0bad55744c78dc3ba3f4ec7593933f5ccef4460c2267de82dff06f42fdcc1a4d8d9276c45dac7502 diff --git a/trinity-base/tdesu/tdesu-14.0.13.ebuild b/trinity-base/tdesu/tdesu-14.0.13.ebuild new file mode 100644 index 00000000..db617e32 --- /dev/null +++ b/trinity-base/tdesu/tdesu-14.0.13.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2022 Gentoo Authors +# Copyright 2022 The Trinity Desktop Project +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +TRINITY_MODULE_NAME="tdebase" +TRINITY_MODULE_TYPE="core" +inherit trinity-meta-2 + +DESCRIPTION="Trinity gui for su(1) or sudo" +if [[ ${PV} != *9999* ]] ; then + KEYWORDS="~amd64 ~arm64 ~x86" +fi +IUSE="sudo" + +DEPEND="sudo? ( app-admin/sudo )" +RDEPEND="${DEPEND}" + +src_configure () { + local mycmakeargs=( + -DWITH_SUDO_TDESU_BACKEND="$(usex sudo)" + -DWITH_SUDO_KONSOLE_SUPER_USER_COMMAND="$(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 usually" + einfo "located in the ~/.trinity/share/config/ directory." + fi +} |