mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
xfce-base/thunar: Bump to 4.20.9
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST thunar-4.20.8.tar.bz2 4549820 BLAKE2B f888ad61a7112d54341f048e39735ba354a848f501437635234d18b891be3bd50ecc3e530c6997761c5b6da16fd25af845202d6a08bbab479d5f06bd06711cfb SHA512 b9e45bacaf01bc60b20e5a1a0a20367f6bbf8b6ab6c8bdb54fd84014e70cb57313c8c0e3f1e11375ee20cd7ca9a4e5d52d9dcb950b66f14a82764819f1369f49
|
||||
DIST thunar-4.20.9.tar.bz2 4671015 BLAKE2B 280b9a2bdbc483790c6f251619e508c0b6961d2326fcbc4897a264bbad5cfc660e8700a80c5ea3078e991dbb2368bdc64a72c8104ee5128c31b30dbfe90eb7f2 SHA512 f60a46a213acfa0598fd45d1e75752c0bd5d0e62b953e2e1a67c4ff587710912e0cf100fe9bb7e8cf741b42402a80f69fb11f72a9213ecce0e117b6716fe58fa
|
||||
DIST thunar-4.21.5.tar.xz 1621480 BLAKE2B d4a4a8082dfb5fb54d4f92e7486178eaee1ad89ece61681f253bb730053ae4952f893a89beb977d67426b9b6fc2173d807deb763840ad885cfedaac5f4dc4473 SHA512 c23fe194c7ec15d713f3642ac4bfe82d5d6617bf049f896fba447ea7c0b0b82dca97ea544c5111d5a5f36c9cf2746515f732b8c4337ba3f5ccc421afe26bbdb4
|
||||
|
||||
86
xfce-base/thunar/thunar-4.20.9.ebuild
Normal file
86
xfce-base/thunar/thunar-4.20.9.ebuild
Normal file
@@ -0,0 +1,86 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit xdg-utils
|
||||
|
||||
DESCRIPTION="File manager for the Xfce desktop environment"
|
||||
HOMEPAGE="
|
||||
https://docs.xfce.org/xfce/thunar/start
|
||||
https://gitlab.xfce.org/xfce/thunar/
|
||||
"
|
||||
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2+ LGPL-2+"
|
||||
SLOT="0/3"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
|
||||
IUSE="exif introspection libnotify pcre +trash-panel-plugin udisks"
|
||||
|
||||
DEPEND="
|
||||
>=dev-libs/glib-2.72.0
|
||||
>=x11-libs/gdk-pixbuf-2.42.8
|
||||
>=x11-libs/gtk+-3.24.0:3[X]
|
||||
>=xfce-base/exo-4.19.0:=
|
||||
>=xfce-base/libxfce4ui-4.17.6:=
|
||||
>=xfce-base/libxfce4util-4.17.2:=
|
||||
>=xfce-base/xfconf-4.12:=
|
||||
exif? ( >=media-libs/libexif-0.6.19:= )
|
||||
introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2:= )
|
||||
libnotify? ( >=x11-libs/libnotify-0.7 )
|
||||
pcre? ( >=dev-libs/libpcre2-10.0:= )
|
||||
trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= )
|
||||
udisks? ( dev-libs/libgudev:= )
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
>=dev-util/desktop-file-utils-0.20-r1
|
||||
x11-misc/shared-mime-info
|
||||
trash-panel-plugin? (
|
||||
>=gnome-base/gvfs-1.18.3
|
||||
)
|
||||
udisks? (
|
||||
>=gnome-base/gvfs-1.18.3[udisks,udev]
|
||||
virtual/udev
|
||||
)
|
||||
"
|
||||
BDEPEND="
|
||||
dev-util/intltool
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
local myconf=(
|
||||
$(use_enable introspection)
|
||||
$(use_enable udisks gudev)
|
||||
$(use_enable libnotify notifications)
|
||||
$(use_enable exif)
|
||||
$(use_enable pcre pcre2)
|
||||
$(use_enable trash-panel-plugin tpa-plugin)
|
||||
)
|
||||
|
||||
econf "${myconf[@]}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${D}" -name '*.la' -delete || die
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
elog "If you were using an older Xfce version and Thunar fails to start"
|
||||
elog "with a message similar to:"
|
||||
elog " Failed to register: Timeout was reached"
|
||||
elog "you may need to reset your xfce4 session:"
|
||||
elog " rm ~/.cache/sessions/xfce4-session-*"
|
||||
elog "See https://bugs.gentoo.org/698914."
|
||||
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
}
|
||||
Reference in New Issue
Block a user