diff options
Diffstat (limited to 'trinity-apps/tdesvn')
-rw-r--r-- | trinity-apps/tdesvn/Manifest | 1 | ||||
-rw-r--r-- | trinity-apps/tdesvn/tdesvn-14.0.13.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/trinity-apps/tdesvn/Manifest b/trinity-apps/tdesvn/Manifest index b45481be..3bc0fa70 100644 --- a/trinity-apps/tdesvn/Manifest +++ b/trinity-apps/tdesvn/Manifest @@ -1 +1,2 @@ DIST tdesvn-trinity-14.0.12.tar.xz 1380252 BLAKE2B ed94db8aff6f659000402729f396a46115706c20f5f468b02428fc26ddf2f663b339692bb20b086f2660e20c80105affe59104523275c26dfc93ecf5f542a71e SHA512 a75744e2c1bb429850b5e5e8155d81163339e9a44be51a0c688023a7857bdaede405fa4e841d0a69c07011adf6affaad5e39dbc2b903bbbf63658ac97b007212 +DIST tdesvn-trinity-14.0.13.tar.xz 1380028 BLAKE2B bae6b856799078c6a5c588eb5775066abb170c84b2781252e2dc8ff7af597eb869b013e726ad7a50af7032002ae1380a63777e0b7910a4fdfee594b737a1fadf SHA512 483449ff7b8b99b56395c3cf51a2c832ea6756e517a76a167e8267da460f7c611729e962f7b059665dee4ac15250480f492d6da59aa6972ebef510e8e3f0e8da diff --git a/trinity-apps/tdesvn/tdesvn-14.0.13.ebuild b/trinity-apps/tdesvn/tdesvn-14.0.13.ebuild new file mode 100644 index 00000000..27d63ea5 --- /dev/null +++ b/trinity-apps/tdesvn/tdesvn-14.0.13.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Copyright 2022 The Trinity Desktop Project +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +TRINITY_EXTRAGEAR_PACKAGING="yes" +TRINITY_HANDBOOK="optional" + +TRINITY_LANGS="ca cs de es fr gl it ja lt nl pa ru sv" +TRINITY_MODULE_TYPE="applications/development" +inherit trinity-base-2 + +DESCRIPTION="Subversion client with tight TDE integration" +HOMEPAGE="https://trinitydesktop.org/" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="14" +if [[ ${PV} != *9999* ]] ; then + KEYWORDS="~amd64 ~arm64 ~x86" +fi +IUSE="test" + +RESTRICT+=" !test? ( test )" + +DEPEND="dev-vcs/subversion" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTS="$(usex test)" + ) + trinity-base-2_src_configure +} |