diff options
author | 2019-01-10 09:30:23 +0100 | |
---|---|---|
committer | 2019-01-10 16:50:00 +0100 | |
commit | f1b6a4697cb6bd8b01b005cca0996982fd736a2d (patch) | |
tree | 9b2799b0df1355e0ee40b8c909752698a0803837 /kde-apps/thumbnailers | |
parent | app-emulation/libvirt: init submodules for live ebuild (diff) | |
download | gentoo-f1b6a4697cb6bd8b01b005cca0996982fd736a2d.tar.gz gentoo-f1b6a4697cb6bd8b01b005cca0996982fd736a2d.tar.bz2 gentoo-f1b6a4697cb6bd8b01b005cca0996982fd736a2d.zip |
kde-apps: Add KDE Applications 18.12.1
Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/thumbnailers')
-rw-r--r-- | kde-apps/thumbnailers/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/thumbnailers/thumbnailers-18.12.1.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/kde-apps/thumbnailers/Manifest b/kde-apps/thumbnailers/Manifest index 011f54bc9eb0..f7a084d100e7 100644 --- a/kde-apps/thumbnailers/Manifest +++ b/kde-apps/thumbnailers/Manifest @@ -1,2 +1,3 @@ DIST kdegraphics-thumbnailers-18.08.3.tar.xz 41284 BLAKE2B e3921df4bca8830779eead63e84f38ab08b28f6e7eb4aedb9e2f0297d9a1c6aa9a068d366501d12f212bf184c169da22b7e4b632b596950d312c4d94abcd92b1 SHA512 3caece3e3cf670077a04aa0bb1a5c77ee2ae3868674a19e4aa105fdc6517cd54f002ecdbb1d494af2a0373a56c362c524427c5b23d6f695119368ecf9252a3bc DIST kdegraphics-thumbnailers-18.12.0.tar.xz 41288 BLAKE2B 22f12579b756bf3f7a65154d93605e3ebadeee8005594287dad9048057ad239acdcceca6daa6b125621d5a80c7c1c034e7ad6baf8bc52e238caff05246eca7a8 SHA512 6ae48e1608def399919769fe33adc07feff459477c38a14ce87a0f62a98d260cc02a6339f82141850a8dd1ce9bdbf8340262bc33115368b7726f1a12841b960c +DIST kdegraphics-thumbnailers-18.12.1.tar.xz 41288 BLAKE2B d69a803090e1631566c0c117eca234e0cb7d5ad35c16aadfd7f4724d0b4aa70f509a8096e3f3a0089fd79db86b6b5e6aa885fe189942ad0c14f71f63720fbc4c SHA512 06cb7995dc9b09133ae9d60d418a266a72899f55f3e02bfd36e988c94264b100829f003c2e5169b558cbc4c84fa3e69481d7d9565d0b7cdba86ae55e5a8495e1 diff --git a/kde-apps/thumbnailers/thumbnailers-18.12.1.ebuild b/kde-apps/thumbnailers/thumbnailers-18.12.1.ebuild new file mode 100644 index 000000000000..c587017133d4 --- /dev/null +++ b/kde-apps/thumbnailers/thumbnailers-18.12.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +KDE_BLOCK_SLOT4=false +KMNAME="kdegraphics-thumbnailers" +inherit kde5 + +DESCRIPTION="Thumbnail generators for PDF/PS and RAW files" +LICENSE="GPL-2+" +KEYWORDS="~amd64 ~x86" +IUSE="raw" + +DEPEND=" + $(add_frameworks_dep kio) + $(add_qt_dep qtgui) + raw? ( + $(add_kdeapps_dep libkdcraw) + $(add_kdeapps_dep libkexiv2) + ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package raw KF5KExiv2) + $(cmake-utils_use_find_package raw KF5KDcraw) + ) + + kde5_src_configure +} |