diff options
author | ormorph <[email protected]> | 2024-04-28 17:23:47 +0300 |
---|---|---|
committer | ormorph <[email protected]> | 2024-04-28 22:35:54 +0300 |
commit | 30335515923be5f5ee02981121d2cdb6ad89978d (patch) | |
tree | d4601e9c08f8d576a5ce043fba5f73020f0c862d /x11-libs/tqscintilla/tqscintilla-14.1.2.ebuild | |
parent | 929431cac813bc953a1e646fe36d1cfbc4a68f4b (diff) | |
download | tde-packaging-gentoo-30335515923be5f5ee02981121d2cdb6ad89978d.tar.gz tde-packaging-gentoo-30335515923be5f5ee02981121d2cdb6ad89978d.zip |
Add new TDE-14.1.2
Signed-off-by: ormorph <[email protected]>
Diffstat (limited to 'x11-libs/tqscintilla/tqscintilla-14.1.2.ebuild')
-rw-r--r-- | x11-libs/tqscintilla/tqscintilla-14.1.2.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/x11-libs/tqscintilla/tqscintilla-14.1.2.ebuild b/x11-libs/tqscintilla/tqscintilla-14.1.2.ebuild new file mode 100644 index 00000000..7c204d83 --- /dev/null +++ b/x11-libs/tqscintilla/tqscintilla-14.1.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 2022-2024 The Trinity Desktop Project +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +TRINITY_MODULE_TYPE="dependencies" +TRINITY_MODULE_NAME="tqscintilla" + +inherit trinity-base-2 + +DESCRIPTION="TQt source code editing component based on Scintilla" +HOMEPAGE="https://trinitydesktop.org/" + +LICENSE="LGPL-2.1" +SLOT="0" +if [[ ${PV} != *9999* ]] ; then + KEYWORDS="~amd64 ~arm64 ~x86" +fi + +DEPEND="~dev-tqt/tqtinterface-${PV}" +RDEPEND="${DEPEND}" + +TQBASE="/usr/tqt3" + +src_configure() { + local mycmakeargs + mycmakeargs=( + -DCMAKE_INSTALL_PREFIX="${EPREFIX}${TQBASE}" + -DHTML_INSTALL_DIR="${TDEDIR}/share/doc/tde/HTML" + -DBUILD_ALL=ON + ) + trinity-base-2_src_configure +} |