Diff xfe-1.43.2 with a xfe-1.44

/usr/portage/x11-misc/xfe/xfe-1.44.ebuild 2023-10-09 14:52:35.952368513 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5
PLOCALES="
6 6
	bs ca cs da de el es_AR es_CO es fr hu it ja nl no pl pt_BR pt_PT ru sv tr
7 7
	zh_CN zh_TW
......
9 9
inherit plocale xdg-utils
10 10

  
11 11
DESCRIPTION="MS-Explorer-like minimalist file manager for X"
12
HOMEPAGE="http://roland65.free.fr/xfe"
13
SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${P}.tar.gz"
12
HOMEPAGE="http://roland65.free.fr/xfe/"
13
SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${P}.tar.xz"
14 14

  
15 15
LICENSE="GPL-2"
16 16
SLOT="0"
......
18 18
IUSE="debug nls startup-notification"
19 19

  
20 20
RDEPEND="
21
	media-libs/libpng:0
22 21
	x11-libs/fox:1.6[png,truetype]
22
	media-libs/fontconfig
23
	x11-libs/libXrandr
23 24
	x11-libs/libX11
24 25
	x11-libs/libXft
25
	startup-notification? ( x11-libs/startup-notification )
26
	startup-notification? (
27
		x11-libs/libxcb:=
28
		x11-libs/startup-notification
29
		x11-libs/xcb-util
30
	)
26 31
"
27
DEPEND="
28
	${RDEPEND}
32
DEPEND="${RDEPEND}"
33
BDEPEND="
34
	dev-util/intltool
29 35
	virtual/pkgconfig
30 36
	nls? (
31
		dev-util/intltool
32 37
		sys-devel/gettext
33 38
	)
34 39
"
......
38 43
src_prepare() {
39 44
	default
40 45

  
41
	cat >po/POTFILES.skip <<-EOF
46
	cat >po/POTFILES.skip || die <<-EOF
42 47
	src/icons.cpp
43 48
	xfe.desktop.in.in
44 49
	xfi.desktop.in.in
Thank you!