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 /trinity-apps/mplayerthumbs | |
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 'trinity-apps/mplayerthumbs')
-rw-r--r-- | trinity-apps/mplayerthumbs/Manifest | 1 | ||||
-rw-r--r-- | trinity-apps/mplayerthumbs/mplayerthumbs-14.1.2.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/trinity-apps/mplayerthumbs/Manifest b/trinity-apps/mplayerthumbs/Manifest index 8b604878..0d1dc1d3 100644 --- a/trinity-apps/mplayerthumbs/Manifest +++ b/trinity-apps/mplayerthumbs/Manifest @@ -1 +1,2 @@ DIST mplayerthumbs-trinity-14.1.1.tar.xz 26588 BLAKE2B 32c7a1a8537da31753c93bd45421b835c1ba3c2e2446d33c30edaa7b9c178751faf5128458499e137bb2efb770ff699620cb75dbe83b7854067d04cb508184f0 SHA512 0b55b57a5da3c34b217ba9d8043ebdbeed981a932ba69546df4ce2220d4942511a18b467242a8541089c4ba1c9f8ea8915da0fe51b5b6c24939d6702cd0cb0aa +DIST mplayerthumbs-trinity-14.1.2.tar.xz 20868 BLAKE2B 042fbb512299d224e632f92a17ed9215860f686428e8e0ff7fa17766883a55b68905b3f50eb0d766a1ae8b3595b42e00f733b709627bf0aafa47f5ee5847595a SHA512 5453d2ba2cba1edfa546af1ac80ceae71c0624adb41d2ec8c17c6d1d749a049414d2baf85991e5a5314eae5d1aa0409de4b6407c818c16332160849883c594ee diff --git a/trinity-apps/mplayerthumbs/mplayerthumbs-14.1.2.ebuild b/trinity-apps/mplayerthumbs/mplayerthumbs-14.1.2.ebuild new file mode 100644 index 00000000..b68c924b --- /dev/null +++ b/trinity-apps/mplayerthumbs/mplayerthumbs-14.1.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2024 Gentoo Authors +# Copyright 2020-2024 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 +} |