diff options
Diffstat (limited to 'trinity-apps/tdeio-sword')
-rw-r--r-- | trinity-apps/tdeio-sword/Manifest | 1 | ||||
-rw-r--r-- | trinity-apps/tdeio-sword/tdeio-sword-14.1.1.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/trinity-apps/tdeio-sword/Manifest b/trinity-apps/tdeio-sword/Manifest index 3a7f35fa..d18330a0 100644 --- a/trinity-apps/tdeio-sword/Manifest +++ b/trinity-apps/tdeio-sword/Manifest @@ -1 +1,2 @@ DIST tdeio-sword-trinity-14.1.0.tar.xz 102716 BLAKE2B d42fd61a4e3a9331c169546a3ea4718e4eafdb5c2b8e11474985b022ec333d07edf521a0eb5875c8f54de405cbcf145eb9b7966598eb8608c6e0144c749cca3e SHA512 edc87933296bf7905acc86f69dfe9b241420f8cb858173de279e3454369d548170471d103e9de0182d944d0ffbafcf4eea8a27a5fd7ad6705f296912916b2269 +DIST tdeio-sword-trinity-14.1.1.tar.xz 102700 BLAKE2B 51d9aa3b77665cc60f10812dc413cdd815f888af626d9b536df01b78e82bae1266694a341b5445cebe055ccb31b212472fe5fdc545e47caaf7a8224b27b0193e SHA512 962cd0c87c7f757ee14c01a0e09a410beec73576430b9f7cb1a06b9481310b0923db4617d9909a7728ffea504d869509ea40f5badb26382d6fedfb76117e0b79 diff --git a/trinity-apps/tdeio-sword/tdeio-sword-14.1.1.ebuild b/trinity-apps/tdeio-sword/tdeio-sword-14.1.1.ebuild new file mode 100644 index 00000000..502a5559 --- /dev/null +++ b/trinity-apps/tdeio-sword/tdeio-sword-14.1.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 2020-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="de" + +TRINITY_MODULE_TYPE="applications/tdeio" +inherit trinity-base-2 + +DESCRIPTION="Sword TDEIO plugin" +HOMEPAGE="https://trinitydesktop.org/" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="14" +if [[ ${PV} != *9999* ]] ; then + KEYWORDS="~amd64 ~arm64 ~x86" +fi + +DEPEND="app-text/sword" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DBUILD_TRANSLATIONS=ON + ) + trinity-base-2_src_configure +} + +pkg_postinst() { + elog "It is recommended that you have modules installed for sword." + elog "Gentoo provides the \"sword-modules\" package for convenience:" + elog "\temerge sword-modules" +} |