Added support for EAPI=8 #250

Merged
SlavekB merged 2 commits from feat/eapi8 into master 2 years ago

@ -22,5 +22,5 @@ DEPEND="sys-apps/dbus
RDEPEND="${DEPEND}"
src_configure() {
cmake-utils_src_configure
cmake_src_configure
}

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_TYPE="dependencies"
TRINITY_MODULE_NAME="dbus-1-tqt"
@ -22,5 +22,5 @@ DEPEND="sys-apps/dbus
RDEPEND="${DEPEND}"
src_configure() {
cmake-utils_src_configure
cmake_src_configure
}

@ -22,5 +22,5 @@ DEPEND="sys-apps/dbus
RDEPEND="${DEPEND}"
src_configure() {
cmake-utils_src_configure
cmake_src_configure
}

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_TYPE="dependencies"
TRINITY_MODULE_NAME="dbus-tqt"
@ -22,5 +22,5 @@ DEPEND="sys-apps/dbus
RDEPEND="${DEPEND}"
src_configure() {
cmake-utils_src_configure
cmake_src_configure
}

@ -27,5 +27,5 @@ src_configure() {
-DWITH_BACKEND_LIBELF=OFF
-DWITH_BACKEND_READONLY=OFF
)
cmake-utils_src_configure
cmake_src_configure
}

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_TYPE="dependencies"
TRINITY_MODULE_NAME="libr"
@ -28,5 +28,5 @@ src_configure() {
-DWITH_BACKEND_LIBELF=OFF
-DWITH_BACKEND_READONLY=OFF
)
cmake-utils_src_configure
cmake_src_configure
}

@ -23,5 +23,5 @@ DEPEND="
RDEPEND="${DEPEND}"
src_configure() {
cmake-utils_src_configure
cmake_src_configure
}

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_TYPE="dependencies"
TRINITY_MODULE_NAME="${PN}"
@ -23,5 +23,5 @@ DEPEND="
RDEPEND="${DEPEND}"
src_configure() {
cmake-utils_src_configure
cmake_src_configure
}

@ -2,11 +2,11 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
SRCTYPE="free" # TODO: what is it doing?
TQTBASE="/usr/tqt3" # TODO: no eclass var, get rid of prefixing
inherit eutils toolchain-funcs
inherit toolchain-funcs
if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="https://mirror.git.trinitydesktop.org/gitea/TDE/tqt3"

@ -32,5 +32,5 @@ src_configure() {
-DUSE_QT3=ON
)
cmake-utils_src_configure
cmake_src_configure
}

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_TYPE="dependencies"
TRINITY_MODULE_NAME="tqtinterface"
@ -31,5 +31,5 @@ src_configure() {
-DQT_PREFIX_DIR="${TQTDIR}"
)
cmake-utils_src_configure
cmake_src_configure
}

@ -1,10 +1,11 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 2020 The Trinity Desktop Project
# Copyright 2020-2022 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
#
# Original Author: fat-zer
# Ported to git-r3 eclass and EAPI7 by E. Liddell
# Ported to cmake eclass and EAPI8 by ormorh
# Purpose: Support ebuilds for the Trinity Desktop (KDE3 fork).
#
@ -15,7 +16,7 @@ inherit trinity-functions-2
# The value of this variable determines the package build mode.
# If set to "yes", the module "admin" is used for assembly.The build
# is done using the 'trinity-econf' and 'emake' functions.
# If set to "no", inherit cmake-utils.
# If set to "no", inherit cmake.
: ${TRINITY_BUILD_ADMIN:=no}
@ -23,7 +24,7 @@ case ${TRINITY_BUILD_ADMIN} in
yes)
;;
no)
inherit cmake-utils
inherit cmake
;;
*)
eerror "Unknown value for \${CHECK_ADMIN}"
@ -39,7 +40,7 @@ addpredict "/usr/tqt3/etc/settings"
# ban EAPI 0-6
case ${EAPI} in
0|1|2|3|4|5|6) die "EAPI=${EAPI} is not supported" ;;
7) ;;
7|8) ;;
*) die "Unknown EAPI=${EAPI}"
esac
@ -356,14 +357,14 @@ trinity-base-2_src_prepare() {
trinity-gen-configure
eapply_user
elif [[ ${TRINITY_BUILD_ADMIN} == "no" ]] ; then
cmake-utils_src_prepare
cmake_src_prepare
fi
}
# @FUNCTION: trinity-base-2_src_configure
# @DESCRIPTION:
# Call standard cmake-utils_src_onfigure and add some common arguments.
# Call standard cmake_src_onfigure and add some common arguments.
trinity-base-2_src_configure() {
debug-print-function ${FUNCNAME} "${@}"
local eg_cmakeargs
@ -408,26 +409,26 @@ trinity-base-2_src_configure() {
if [[ ${TRINITY_BUILD_ADMIN} == "yes" ]] ; then
trinity-econf
elif [[ ${TRINITY_BUILD_ADMIN} == "no" ]] ; then
cmake-utils_src_configure
cmake_src_configure
fi
}
# @FUNCTION: trinity-base-2_src_compile
# @DESCRIPTION:
# Just call cmake-utils_src_compile.
# Just call cmake_src_compile.
trinity-base-2_src_compile() {
debug-print-function ${FUNCNAME} "${@}"
if [[ ${TRINITY_BUILD_ADMIN} == "yes" ]] ; then
emake
elif [[ ${TRINITY_BUILD_ADMIN} == "no" ]] ; then
cmake-utils_src_compile
cmake_src_compile
fi
}
# @FUNCTION: trinity-base-2_src_install
# @DESCRIPTION:
# Call standard cmake-utils_src_install and installs common documentation.
# Call standard cmake_src_install and installs common documentation.
trinity-base-2_src_install() {
debug-print-function ${FUNCNAME} "${@}"
@ -436,7 +437,7 @@ trinity-base-2_src_install() {
emake install DESTDIR="${D}"
fi
elif [[ ${TRINITY_BUILD_ADMIN} == "no" ]] ; then
cmake-utils_src_install
cmake_src_install
fi
if [[ -z "${TRINITY_BASE_NO_INSTALL_DOC}" ||

@ -1,10 +1,11 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 2020 The Trinity Desktop Project
# Copyright 2020-2022 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
#
# Original Author: Alexander Golubev (Fat-Zer)
# Ported to git-r3 eclass and EAPI7 by E. Liddell
# Ported to cmake eclass and EAPI8 by ormorh
# Purpose: Basic Trinity eclass functions and variables
#

@ -1,10 +1,11 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 2020 The Trinity Desktop Project
# Copyright 2020-2022 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
#
# Original Author: fat-zer
# Ported to git-r3 eclass and EAPI7 by E. Liddell
# Ported to cmake eclass and EAPI8 by ormorh
# Purpose: Make it easy to install Trinity ebuilds.
#

@ -48,5 +48,5 @@ src_configure() {
-DWITH_SRC_RESAMPLER=$(usex libsamplerate)
)
cmake-utils_src_configure
cmake_src_configure
}

@ -2,7 +2,7 @@
# Copyright 2020-2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_TYPE="dependencies"
TRINITY_MODULE_NAME="akode"
@ -48,5 +48,5 @@ src_configure() {
-DWITH_SRC_RESAMPLER=$(usex libsamplerate)
)
cmake-utils_src_configure
cmake_src_configure
}

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
inherit cmake-multilib

@ -19,17 +19,17 @@ fi
src_prepare() {
sed '/ART_SIZEOF_LONG/d' -i src/art_config.h.cmake || die
cmake-utils_src_prepare
cmake_src_prepare
}
multilib_src_configure() {
cmake-utils_src_configure
cmake_src_configure
}
multilib_src_compile() {
cmake-utils_src_compile
cmake_src_compile
}
multilib_src_install() {
cmake-utils_src_install
cmake_src_install
}

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_TYPE="dependencies"
TRINITY_MODULE_NAME="libart-lgpl"
@ -19,17 +19,17 @@ fi
src_prepare() {
sed '/ART_SIZEOF_LONG/d' -i src/art_config.h.cmake || die
cmake-utils_src_prepare
cmake_src_prepare
}
multilib_src_configure() {
cmake-utils_src_configure
cmake_src_configure
}
multilib_src_compile() {
cmake-utils_src_compile
cmake_src_compile
}
multilib_src_install() {
cmake-utils_src_install
cmake_src_install
}

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="koffice"
TRINITY_MODULE_TYPE="applications/office"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_MODULE_TYPE="applications/graphics"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TEG_PO_DIR=${S}

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_BUILD_ADMIN="yes"
TRINITY_MODULE_TYPE="applications/graphics"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_TYPE="applications/multimedia"
inherit trinity-base-2

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_NEED_ARTS="optional"
TRINITY_MODULE_TYPE="applications/multimedia"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="koffice"
TRINITY_MODULE_TYPE="applications/office"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="koffice"
TRINITY_BUILD_ADMIN="yes"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="koffice"
TRINITY_MODULE_TYPE="applications/office"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="koffice"
TRINITY_MODULE_TYPE="applications/office"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="koffice"
TRINITY_MODULE_TYPE="applications/office"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_HANDBOOK="optional"
TRINITY_MODULE_TYPE="applications/settings"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="koffice"
TRINITY_MODULE_TYPE="applications/office"
TRINITY_BUILD_ADMIN="yes"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_TYPE="applications/office"
TRINITY_BUILD_ADMIN="yes"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="koffice"
TRINITY_MODULE_TYPE="applications/office"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
DESCRIPTION="Trinity Software koffice meta package"
HOMEPAGE="https://trinitydesktop.org/"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="koffice"
TRINITY_MODULE_TYPE="applications/office"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="koffice"
TRINITY_MODULE_TYPE="applications/office"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="koffice"
TRINITY_MODULE_TYPE="applications/office"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_TYPE="applications/themes"
inherit trinity-base-2

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="koffice"
TRINITY_MODULE_TYPE="applications/office"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -1,7 +1,7 @@
# Copyright 2022 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="koffice"
TRINITY_MODULE_TYPE="applications/office"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="koffice"
TRINITY_MODULE_TYPE="applications/office"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_MODULE_TYPE="libraries"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_TYPE="libraries"
inherit trinity-base-2

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_MODULE_TYPE="libraries"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -1,7 +1,7 @@
# Copyright 2022 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_TYPE="applications/system"
inherit trinity-base-2

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="never"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="never"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="no"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="never"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="never"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="never"

@ -2,7 +2,7 @@
# Copyright 2019-2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="never"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="never"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="never"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_EXTRAGEAR_PACKAGING="yes"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdetoys"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_TYPE="dependencies"
TRINITY_MODULE_NAME="arts"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaddons"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdesdk"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdetoys"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdetoys"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdemultimedia"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdemultimedia"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaddons"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -27,5 +27,5 @@ RDEPEND="${DEPEND}"
src_prepare() {
trinity-admin-prepare
cmake-utils_src_prepare
cmake_src_prepare
}

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdesdk"
TRINITY_MODULE_TYPE="core"
@ -27,5 +27,5 @@ RDEPEND="${DEPEND}"
src_prepare() {
trinity-admin-prepare
cmake-utils_src_prepare
cmake_src_prepare
}

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_NEED_ARTS="yes"
TRINITY_MODULE_NAME="tdegames"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TSM_EXTRACT="kate"
TRINITY_MODULE_NAME="tdeaddons"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdemultimedia"
TRINITY_MODULE_TYPE="core"
TSM_EXTRACT_ALSO="libkcddb/ kscd/"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdesdk"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_NEED_ARTS="optional"
TRINITY_MODULE_NAME="tdegames"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaccessibility"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdesdk"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_SUBMODULE="kcharselect charselectapplet"
TRINITY_MODULE_NAME="tdeutils"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeadmin"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_NEED_ARTS="optional"
TRINITY_MODULE_NAME="tdebase"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaddons"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdewebdev"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdewebdev"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaccessibility"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdemultimedia"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdetoys"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaccessibility"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaccessibility"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdesdk"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeadmin"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaddons"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdetoys"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_NEED_ARTS="yes"
TRINITY_MODULE_NAME="tdegames"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdewebdev"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdesdk"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_NEED_ARTS="optional"
TRINITY_MODULE_NAME="tdeaddons"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TSM_EXTRACT_ALSO="certmanager/lib/
libemailfunctions/

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdemultimedia"
TRINITY_MODULE_TYPE="core"
TSM_EXTRACT_ALSO="arts oggvorbis_artsplugin"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaccessibility"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdemultimedia"
TRINITY_MODULE_TYPE="core"
TSM_EXTRACT_ALSO="libkcddb/"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaddons"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdesdk"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdetoys"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaccessibility"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdetoys"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdesdk"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeadmin"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdetoys"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_SUBMODULE="wifi"
TRINITY_NEED_ARTS="optional"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_SUBMODULE="kworldwatch"
TRINITY_MODULE_NAME="tdetoys"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdewebdev"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdemultimedia"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_NEED_ARTS="optional"
TRINITY_MODULE_NAME="tdebase"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_SUBMODULE="lanbrowsing"
TRINITY_MODULE_NAME="tdenetwork"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_NEED_ARTS="optional"
TRINITY_MODULE_NAME="tdeaddons"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdemultimedia"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdesdk"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdewebdev"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaddons"
TRINITY_MODULE_TYPE="core"

@ -20,7 +20,7 @@ IUSE=""
src_configure() {
local mycmakeargs=(
# -DWITH_XMMS="$(usex xmms)"
# $(cmake-utils_use_with xmms XMMS )
# $(cmake_use_with xmms XMMS )
-DWITH_KNEWSTUFF=ON
)
trinity-meta-2_src_configure

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"
@ -20,7 +20,7 @@ IUSE=""
src_configure() {
local mycmakeargs=(
# -DWITH_XMMS="$(usex xmms)"
# $(cmake-utils_use_with xmms XMMS )
# $(cmake_use_with xmms XMMS )
-DWITH_KNEWSTUFF=ON
)
trinity-meta-2_src_configure

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_LANGS="af ar az be bg bn br bs ca cs csb cy da de el en_GB eo es et
eu fa fi fr fy ga gl he hi hr hu is it ja kk km ko lt lv mk mn ms

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaccessibility"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaccessibility"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
DESCRIPTION="Trinity Software meta package for tdeaccessibility"
HOMEPAGE="https://trinitydesktop.org/"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaddons"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
DESCRIPTION="tdeaddons metapackage - merge this to pull in all tdeaddons-derived packages"
HOMEPAGE="https://trinitydesktop.org/"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeaddons"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeadmin"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
DESCRIPTION="Trinity Software meta package for tdeadmin"
HOMEPAGE="https://trinitydesktop.org/"

@ -2,7 +2,7 @@
# Copyright 2020-2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeartwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020-2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeartwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020-2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeartwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020-2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeartwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
DESCRIPTION="tdeartwork meta package - merge this to pull in all tdeartwork-derived packages"
HOMEPAGE="https://trinitydesktop.org/"

@ -2,7 +2,7 @@
# Copyright 2020-2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeartwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020-2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeartwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020-2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_NEED_ARTS="optional"
TRINITY_MODULE_NAME="tdeartwork"

@ -2,7 +2,7 @@
# Copyright 2020-2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeartwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020-2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeartwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
DESCRIPTION="tdebase metapackage - merge this to pull in all tdebase-derived packages"
HOMEPAGE="https://trinitydesktop.org/"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdesdk"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeedu"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
DESCRIPTION="Metapackage Trinity Software Educations"
HOMEPAGE="https://trinitydesktop.org/"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeadmin"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020-2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
DESCRIPTION="tdegames metapackage - merge this to pull in all tdegames-derived packages"
HOMEPAGE="https://trinitydesktop.org/"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
DESCRIPTION="tdegraphics metapackage - merge this to pull in all tdegraphics-derived packages"
HOMEPAGE="https://trinitydesktop.org/"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegraphics"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,11 +2,11 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdelibs"
TRINITY_MODULE_TYPE="core"
inherit eapi8-dosym trinity-base-2
inherit trinity-base-2
DESCRIPTION="Trinity libraries needed by all TDE programs"
HOMEPAGE="https://trinitydesktop.org/"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdemultimedia"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020-2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdemultimedia"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdemultimedia"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdemultimedia"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
inherit trinity-functions-2

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdemultimedia"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020-2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdemultimedia"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
DESCRIPTION="tdenetwork metapackage - merge this to pull in all tdenetwork-derived packages"
HOMEPAGE="https://trinitydesktop.org/"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdenetwork"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
DESCRIPTION="Tdepim - merge this to pull in all tdepim-derived packages"
HOMEPAGE="https://trinitydesktop.org/"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"
TRINITY_SUBMODULE="tderesources"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdepim"
TRINITY_MODULE_TYPE="core"
TRINITY_SUBMODULE="wizards"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdesdk"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
DESCRIPTION="Metapackage Trinity Software Development Kit (SDK)"
HOMEPAGE="http://www.trinitydesktop.org/"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdesdk"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdetoys"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
DESCRIPTION="tdetoys metapackage - merge this to pull in all tdetoys-derived packages"
HOMEPAGE="https://trinitydesktop.org/"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdesdk"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
DESCRIPTION="tdeutils metapackage - merge this to pull in all tdeutils-derived packages"
HOMEPAGE="https://trinitydesktop.org/"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_HANDBOOK="optional"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdeutils"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdewebdev"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
DESCRIPTION="Trinity Software meta package for web development (tdewebdev)"
HOMEPAGE="https://trinitydesktop.org/"

@ -52,7 +52,7 @@ src_configure() {
}
src_install() {
cmake-utils_src_install
cmake_src_install
# Customize the tdmrc configuration
sed -i -e "s:#SessionsDirs=:SessionsDirs=/usr/share/xsessions\n#SessionsDirs=:" \

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"
@ -52,7 +52,7 @@ src_configure() {
}
src_install() {
cmake-utils_src_install
cmake_src_install
# Customize the tdmrc configuration
sed -i -e "s:#SessionsDirs=:SessionsDirs=/usr/share/xsessions\n#SessionsDirs=:" \

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"

@ -16,9 +16,9 @@ if [[ ${PV} != *9999* ]] ; then
fi
src_configure() {
cmake-utils_src_configure
cmake_src_configure
}
src_install() {
cmake-utils_src_install
cmake_src_install
}

@ -2,7 +2,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_TYPE="common"
TRINITY_MODULE_NAME="tde-common-cmake"
@ -16,9 +16,9 @@ if [[ ${PV} != *9999* ]] ; then
fi
src_configure() {
cmake-utils_src_configure
cmake_src_configure
}
src_install() {
cmake-utils_src_install
cmake_src_install
}

@ -2,12 +2,12 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"
TSM_EXTRACT_ALSO="translations/"
inherit trinity-meta-2 eutils
inherit trinity-meta-2
DESCRIPTION="Trinity window manager"
if [[ ${PV} != *9999* ]] ; then

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdegames"
TRINITY_MODULE_TYPE="core"

@ -2,7 +2,7 @@
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_NAME="tdesdk"
TRINITY_MODULE_TYPE="core"

@ -1,7 +1,7 @@
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI="8"
TRINITY_MODULE_TYPE="dependencies"
TRINITY_MODULE_NAME="tqscintilla"

Loading…
Cancel
Save