diff options
author | ormorph <[email protected]> | 2023-10-27 13:50:17 +0300 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2023-10-29 10:05:05 +0100 |
commit | 271fc0de62480ffa8a1525e07b833079c96ca6bd (patch) | |
tree | fe24a566266198330ff71db390413fdf7a9d63af /trinity-apps/basket | |
parent | 8e955e3a507fd32d4b98df0893bb2dfa83b48eb8 (diff) | |
download | tde-packaging-gentoo-271fc0de62480ffa8a1525e07b833079c96ca6bd.tar.gz tde-packaging-gentoo-271fc0de62480ffa8a1525e07b833079c96ca6bd.zip |
Release R14.1.1 added
Signed-off-by: ormorph <[email protected]>
(cherry picked from commit 18d39ed9f062321b596258a9137f10b3e93b71e0)
Diffstat (limited to 'trinity-apps/basket')
-rw-r--r-- | trinity-apps/basket/Manifest | 1 | ||||
-rw-r--r-- | trinity-apps/basket/basket-14.1.1.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/trinity-apps/basket/Manifest b/trinity-apps/basket/Manifest index 67036c65..841f7440 100644 --- a/trinity-apps/basket/Manifest +++ b/trinity-apps/basket/Manifest @@ -1 +1,2 @@ DIST basket-trinity-14.1.0.tar.xz 3616372 BLAKE2B ebc67389442e2b498ff42484480f698d2f5a120850bb94c7fa3d552d0a12f818e4febf6b506292c0a09721666276e14e252601e850e32f75a08b6f9b16f160bf SHA512 855647aa1f323c6dbf324028950ddac5d66f7c754ecebcb2b1186e8ddb7857713126255f01c25a2acf9ff17e9ef75d008ed5c9d1fb0b0829930ac0d76a55e8bd +DIST basket-trinity-14.1.1.tar.xz 3616400 BLAKE2B 6dc6480050641fe27c63915ab4aefbf672552edc9f019fd59570fa260fcf88e9ff726e0119e07f2764e8d77589c16167ddd91acc7851f464a59fff87da4ee9c9 SHA512 5e8e0e396609137324f56af0e8b7f12df9fec4754929d53e5cccda41d50495a4156d42a5288f1b5d38904e38cd0c3b6053d2bee04a23e32a1ea1e61cb58d1c15 diff --git a/trinity-apps/basket/basket-14.1.1.ebuild b/trinity-apps/basket/basket-14.1.1.ebuild new file mode 100644 index 00000000..ad664e01 --- /dev/null +++ b/trinity-apps/basket/basket-14.1.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2023 Gentoo Authors +# Copyright 2020-2023 The Trinity Desktop Project +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +TRINITY_EXTRAGEAR_PACKAGING="yes" +TRINITY_HANDBOOK="optional" + +TRINITY_LANGS="cs da de es fr it ja nl nn pl_PL pt ru sk tr zh_CN zh_TW" +TRINITY_NEED_ARTS="optional" +TRINITY_MODULE_TYPE="applications/office" +inherit trinity-base-2 + +DESCRIPTION="Multi-purpose note-taking application for TDE" +HOMEPAGE="https://trinitydesktop.org/" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="14" +if [[ ${PV} != *9999* ]] ; then + KEYWORDS="~amd64 ~arm64 ~x86" +fi +IUSE="crypt kontact +svg" + +DEPEND=" + crypt? ( app-crypt/gpgme ) + kontact? ( ~trinity-base/kontact-${PV} ) + svg? ( ~media-libs/libart_lgpl-${PV} )" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DBUILD_TRANSLATIONS=ON + -DBUILD_KONTACT_PLUGIN="$(usex kontact)" + -DWITH_LIBART="$(usex svg)" + -DWITH_GPGME="$(usex crypt)" + ) + + trinity-base-2_src_configure +} |