diff options
author | Michael Vetter <jubalh@iodoru.org> | 2023-04-15 18:31:10 +0000 |
---|---|---|
committer | Jimi Huotari <chiitoo@gentoo.org> | 2023-04-18 01:05:25 +0300 |
commit | 057d89a6b26d42e76dcbd59f9ab94db7176e3269 (patch) | |
tree | b1045530251e081577ca8245cfbeb4289a4615bc /x11-libs | |
parent | dev-util/lxqt-build-tools: add 0.13.0 (diff) | |
download | gentoo-057d89a6b26d42e76dcbd59f9ab94db7176e3269.tar.gz gentoo-057d89a6b26d42e76dcbd59f9ab94db7176e3269.tar.bz2 gentoo-057d89a6b26d42e76dcbd59f9ab94db7176e3269.zip |
x11-libs/libfm-qt: add 1.3.0
Signed-off-by: Michael Vetter <jubalh@iodoru.org>
Signed-off-by: Jimi Huotari <chiitoo@gentoo.org>
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/libfm-qt/Manifest | 1 | ||||
-rw-r--r-- | x11-libs/libfm-qt/libfm-qt-1.3.0.ebuild | 45 |
2 files changed, 46 insertions, 0 deletions
diff --git a/x11-libs/libfm-qt/Manifest b/x11-libs/libfm-qt/Manifest index ea131db6033d..16a88ee568c0 100644 --- a/x11-libs/libfm-qt/Manifest +++ b/x11-libs/libfm-qt/Manifest @@ -1,2 +1,3 @@ DIST libfm-qt-1.1.0.tar.xz 383280 BLAKE2B f01b8d2b21bee05c265f55d6b1c71644001bd668a03d8c4994a4e0fde2f07e53014d3b079d818b7a66cd25f8c9141fa980d0cdb9d3b8e4a66eb3b1521c46690b SHA512 6717bc3fd3a2795389071e4dbfba2e73f3abfeafce8a583f99b3281e60347430db48246eb29796c5b7647b35b064824e90fc3a286547288798a1c6da3a3f5137 DIST libfm-qt-1.2.0.tar.xz 385056 BLAKE2B 644579380460f9ad407c4a844b62a78d677f0447b3508f1ea00c3ff67278959679cb3177ece2bfd99ecf1e7d4adc8f45b06fbcc34d083dc8696869adcc0fe50a SHA512 941943b9d1275e2306689e19375d5d5589a638446319c275ebdf211d25cdb90116b9359daa36b53dc5688ba09219d66dc79e312752ce56559e485ecdbfd895c0 +DIST libfm-qt-1.3.0.tar.xz 388256 BLAKE2B 454b2a685f505ad93c007744d92f9b87cdf2c02b65467762a337b021f9be648be92497e539d419b7a46556a281ee2b1f56fe57fbbdb8d3cf0d661f6f3260c8aa SHA512 fd7ecc1a8e94893682b7e0ca76805b36dbf184a4f2f7d84008ef81ea2257d994db0f8f8e18f890b8554fd1f20e23f8d7f20cf6b3112b32d66c969b683f8db3ba diff --git a/x11-libs/libfm-qt/libfm-qt-1.3.0.ebuild b/x11-libs/libfm-qt/libfm-qt-1.3.0.ebuild new file mode 100644 index 000000000000..db6866c50a40 --- /dev/null +++ b/x11-libs/libfm-qt/libfm-qt-1.3.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg-utils + +DESCRIPTION="Qt Library for Building File Managers" +HOMEPAGE="https://lxqt-project.org/" + +if [[ "${PV}" == "9999" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="BSD GPL-2+ LGPL-2.1+" +SLOT="0/7" + +BDEPEND=" + >=dev-qt/linguist-tools-5.15:5 + >=dev-util/lxqt-build-tools-0.13.0 + virtual/pkgconfig +" +DEPEND=" + dev-libs/glib:2 + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtgui-5.15:5= + >=dev-qt/qtwidgets-5.15:5 + >=dev-qt/qtx11extras-5.15:5 + >=lxde-base/menu-cache-1.1.0:= + media-libs/libexif + x11-libs/libxcb:= +" +RDEPEND="${DEPEND}" + +pkg_postinst() { + xdg_mimeinfo_database_update +} + +pkg_postrm() { + xdg_mimeinfo_database_update +} |