diff options
author | Jimi Huotari <chiitoo@gentoo.org> | 2024-04-17 20:56:26 +0300 |
---|---|---|
committer | Jimi Huotari <chiitoo@gentoo.org> | 2024-06-15 00:48:28 +0300 |
commit | eca6ef051cebdfd709d38bbb12ce15667abf4796 (patch) | |
tree | 23eac2e8f001572814af0ed72ed063e38abe005b /x11-libs | |
parent | app-misc/qtxdg-tools: add 4.0.0 (diff) | |
download | gentoo-eca6ef051cebdfd709d38bbb12ce15667abf4796.tar.gz gentoo-eca6ef051cebdfd709d38bbb12ce15667abf4796.tar.bz2 gentoo-eca6ef051cebdfd709d38bbb12ce15667abf4796.zip |
x11-libs/libfm-qt: add 2.0.2
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-2.0.2.ebuild | 45 |
2 files changed, 46 insertions, 0 deletions
diff --git a/x11-libs/libfm-qt/Manifest b/x11-libs/libfm-qt/Manifest index ecf23cd1d259..7896933255e8 100644 --- a/x11-libs/libfm-qt/Manifest +++ b/x11-libs/libfm-qt/Manifest @@ -1,3 +1,4 @@ DIST libfm-qt-1.1.0.tar.xz 383280 BLAKE2B f01b8d2b21bee05c265f55d6b1c71644001bd668a03d8c4994a4e0fde2f07e53014d3b079d818b7a66cd25f8c9141fa980d0cdb9d3b8e4a66eb3b1521c46690b SHA512 6717bc3fd3a2795389071e4dbfba2e73f3abfeafce8a583f99b3281e60347430db48246eb29796c5b7647b35b064824e90fc3a286547288798a1c6da3a3f5137 DIST libfm-qt-1.3.0.tar.xz 388256 BLAKE2B 454b2a685f505ad93c007744d92f9b87cdf2c02b65467762a337b021f9be648be92497e539d419b7a46556a281ee2b1f56fe57fbbdb8d3cf0d661f6f3260c8aa SHA512 fd7ecc1a8e94893682b7e0ca76805b36dbf184a4f2f7d84008ef81ea2257d994db0f8f8e18f890b8554fd1f20e23f8d7f20cf6b3112b32d66c969b683f8db3ba DIST libfm-qt-1.4.0.tar.xz 398004 BLAKE2B fbae0e86d468ce9b83b06c342a0473c9f44fe301c03b64e472f86791f297d99c3d2e52e482edcd7adc38683de71958b210e89dbb662e0f924c3b71df53e8c885 SHA512 d5a9bbb1f295dfbe88add760fc9c8da60771d4d49b64408b1278315b52dd071d7e24dbc9ff8354f0c68e5ad58e809e78a2dae77e2d4f52cd8e0b8409c0d7f5cb +DIST libfm-qt-2.0.2.tar.xz 412452 BLAKE2B ce63a75722769fcef4766461bea66f26579c0a37a73f4ce8b0ee976a53beea5bdf431c515d5f0195c02ddf46407802027d05709b8baf2bf1349578a38a33e8e8 SHA512 479a7de05096b0c7763676e8eef5fa83ec06b4a5bc7bde697a265b2ba3ec79f6733169bf4b4aeef807df44660790b3d68f873c3a428f45aa38820bd861ca881b diff --git a/x11-libs/libfm-qt/libfm-qt-2.0.2.ebuild b/x11-libs/libfm-qt/libfm-qt-2.0.2.ebuild new file mode 100644 index 000000000000..68d7b324f5d2 --- /dev/null +++ b/x11-libs/libfm-qt/libfm-qt-2.0.2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PV="$(ver_cut 1-2)" + +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" +fi + +LICENSE="BSD GPL-2+ LGPL-2.1+" +SLOT="0/7" + +BDEPEND=" + >=dev-qt/qttools-6.6:6[linguist] + >=dev-util/lxqt-build-tools-2.0.0 + virtual/pkgconfig +" +DEPEND=" + dev-libs/glib:2 + >=dev-qt/qtbase-6.6:6=[gui,widgets] + >=lxde-base/menu-cache-1.1.0:= + >=lxqt-base/lxqt-menu-data-2.0.0 + media-libs/libexif + x11-libs/libxcb:= +" +RDEPEND="${DEPEND}" + +pkg_postinst() { + xdg_mimeinfo_database_update +} + +pkg_postrm() { + xdg_mimeinfo_database_update +} |