diff options
author | ormorph <roma251078@mail.ru> | 2022-10-28 12:41:56 +0200 |
---|---|---|
committer | ormorph <roma251078@mail.ru> | 2022-10-28 19:43:12 +0200 |
commit | 345c52699ff344a3bd46c0ee5df765dc404ac3d1 (patch) | |
tree | 752a6cb2512e0573cc46d7e89d3575a7a91840c6 /trinity-apps/mplayerthumbs | |
parent | cc26a6f102600556b4f96fd651ac2b67482e6932 (diff) | |
download | tde-packaging-gentoo-345c52699ff344a3bd46c0ee5df765dc404ac3d1.tar.gz tde-packaging-gentoo-345c52699ff344a3bd46c0ee5df765dc404ac3d1.zip |
Added version 14.0.13
Signed-off-by: ormorph <roma251078@mail.ru>
Diffstat (limited to 'trinity-apps/mplayerthumbs')
-rw-r--r-- | trinity-apps/mplayerthumbs/Manifest | 1 | ||||
-rw-r--r-- | trinity-apps/mplayerthumbs/mplayerthumbs-14.0.13.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/trinity-apps/mplayerthumbs/Manifest b/trinity-apps/mplayerthumbs/Manifest index dafbaa7b..8fd3b2e0 100644 --- a/trinity-apps/mplayerthumbs/Manifest +++ b/trinity-apps/mplayerthumbs/Manifest @@ -1 +1,2 @@ DIST mplayerthumbs-trinity-14.0.12.tar.xz 26620 BLAKE2B d05ac7992c550616090ec7f8b94ae8db7108abcc3fdf1435612bd37c21be62201e1f7e2379c9b664fd45b849419dba08347ee4a1c08f839fdf5a362f10df3f7b SHA512 1d3de157d62d03d7908867aec39154ba28ba22cb955a55d11c07d1ad1d8f97bf8e119ec5259fcf9cc30cace31f18c66ebaa1d3fa5167bb189c8a3b14c0516f25 +DIST mplayerthumbs-trinity-14.0.13.tar.xz 26604 BLAKE2B ff29042d27759f38d8ff41724e7b84fa21949db07aa86338281fced519e8c382ba7e7597c200d16112c5471fd0f2acbdb39cb6d5a11d91480a845b56dc955893 SHA512 f767a93baebdf75ef903f250631552925cfba43f40bdb01e52b51d46f8e7e5680f2990305e3acbedba634b6d8f321f1a54d401ead6f50f7baa71f1743357ef6c diff --git a/trinity-apps/mplayerthumbs/mplayerthumbs-14.0.13.ebuild b/trinity-apps/mplayerthumbs/mplayerthumbs-14.0.13.ebuild new file mode 100644 index 00000000..f2c6fc24 --- /dev/null +++ b/trinity-apps/mplayerthumbs/mplayerthumbs-14.0.13.ebuild @@ -0,0 +1,33 @@ +# 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="de" +TRINITY_MODULE_TYPE="applications/multimedia" +inherit trinity-base-2 + +DESCRIPTION="MPlayer based thumbnail generator for TDE" +HOMEPAGE="https://trinitydesktop.org/" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="14" +if [[ ${PV} != *9999* ]] ; then + KEYWORDS="~amd64 ~arm64 ~x86" +fi +IUSE="+strips" + +RDEPEND="media-video/mplayer" + +src_configure() { + local mycmakeargs=( + -DBUILD_TRANSLATIONS=ON + -DWITH_STRIPS_SUPPORT="$(usex strips)" + ) + + trinity-base-2_src_configure +} |