diff options
author | ormorph <[email protected]> | 2023-04-16 16:23:47 +0300 |
---|---|---|
committer | ormorph <[email protected]> | 2023-04-16 16:23:47 +0300 |
commit | 3401abb615b656c425a85b933aa25335f6ddf156 (patch) | |
tree | e851daa136aa559fbd59f329d0212bead6ff9431 /trinity-base/tdebase-starttde | |
parent | 13736d9fa9ed50c2e28d16c86ac2fc5384a5e2ac (diff) | |
download | tde-packaging-gentoo-3401abb615b656c425a85b933aa25335f6ddf156.tar.gz tde-packaging-gentoo-3401abb615b656c425a85b933aa25335f6ddf156.zip |
Removing ebuilds of version 14.0.12
Signed-off-by: ormorph <[email protected]>
Diffstat (limited to 'trinity-base/tdebase-starttde')
-rw-r--r-- | trinity-base/tdebase-starttde/Manifest | 1 | ||||
-rw-r--r-- | trinity-base/tdebase-starttde/tdebase-starttde-14.0.12.ebuild | 84 |
2 files changed, 0 insertions, 85 deletions
diff --git a/trinity-base/tdebase-starttde/Manifest b/trinity-base/tdebase-starttde/Manifest index 2b513f21..18b996f6 100644 --- a/trinity-base/tdebase-starttde/Manifest +++ b/trinity-base/tdebase-starttde/Manifest @@ -1,2 +1 @@ -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/tdebase-starttde/tdebase-starttde-14.0.12.ebuild b/trinity-base/tdebase-starttde/tdebase-starttde-14.0.12.ebuild deleted file mode 100644 index e701928e..00000000 --- a/trinity-base/tdebase-starttde/tdebase-starttde-14.0.12.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# 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" -TSM_EXTRACT="starttde README.pam INSTALL AUTHORS COPYING COPYING-DOCS tdm r14-xdg-update migratekde3" -inherit trinity-meta-2 - -DESCRIPTION="Starttde script, which starts a complete Trinity session, and associated scripts" -if [[ ${PV} != *9999* ]] ; then - KEYWORDS="~amd64 ~arm64 ~x86" -fi - -RDEPEND="x11-apps/xmessage - x11-apps/xsetroot - x11-apps/xset - x11-apps/xrandr - x11-apps/mkfontscale - x11-apps/xprop - ~trinity-base/kdesktop-${PV} - ~trinity-base/kcminit-${PV} - ~trinity-base/ksmserver-${PV} - ~trinity-base/twin-${PV} - ~trinity-base/kpersonalizer-${PV} - ~trinity-base/kreadconfig-${PV} - ~trinity-base/ksplashml-${PV} - ~trinity-base/tdeinit-${PV}" - -src_prepare() { - trinity-base-2_src_prepare -} - -src_configure() { - echo -n ""; -} - -src_compile() { - # List all the multilib libdirs - local _libdir _libdirs - for _libdir in $(get_all_libdirs); do - _libdirs="${_libdirs}:${TDEDIR}/${_libdir}" - done - _libdirs=${_libdirs#:} -} - -src_install() { - # starttde script - exeinto "${TDEDIR}/bin" - doexe starttde - doexe r14-xdg-update - doexe migratekde3 - - # startup and shutdown scripts - exeinto "${TDEDIR}/env" - doexe "${FILESDIR}/agent-startup.sh" - - exeinto "${TDEDIR}/shutdown" - doexe "${FILESDIR}/agent-shutdown.sh" - - # x11 session script - cat <<EOF > "${T}/tde-${SLOT}" -#!/bin/sh -exec ${TDEDIR}/bin/starttde -EOF - exeinto /etc/X11/Sessions - doexe "${T}/tde-${SLOT}" # FIXME: change script branding to trinity - - # (not really) freedesktop compliant session script - sed -e "s:@TDE_BINDIR@:${TDEDIR}/bin:g;s:Name=Trinity:Name=Trinity ${SLOT}:" \ - "${S}/tdm/kfrontend/sessions/tde.desktop.in" > "${T}/tde-${SLOT}.desktop" - insinto /usr/share/xsessions - doins "${T}/tde-${SLOT}.desktop" -} - -pkg_postinst () { - echo - elog "To enable gpg-agent and/or ssh-agent in Trinity sessions," - elog "edit ${TDEDIR}/env/agent-startup.sh and" - elog "${TDEDIR}/shutdown/agent-shutdown.sh" - echo -} |