Diff cadaver-0.23.3-r1 with a cadaver-0.26

/usr/portage/net-misc/cadaver/cadaver-0.26.ebuild 2025-07-29 16:22:17.280467528 +0300
1
# Copyright 2003-2022 Gentoo Authors
1
# Copyright 2003-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
inherit autotools
7

  
8 6
DESCRIPTION="Command-line WebDAV client"
9
HOMEPAGE="http://webdav.org/cadaver/ https://github.com/notroj/cadaver"
10
SRC_URI="http://webdav.org/cadaver/${P}.tar.gz"
7
HOMEPAGE="https://notroj.github.io/cadaver/ https://github.com/notroj/cadaver"
8
SRC_URI="https://notroj.github.io/cadaver/${P}.tar.gz"
11 9

  
12 10
LICENSE="GPL-2"
13 11
SLOT="0"
14 12
KEYWORDS="amd64 ~ppc ppc64 ~sparc x86"
15 13
IUSE="nls"
16 14

  
17
BDEPEND="sys-devel/gettext"
18
DEPEND=">=net-libs/neon-0.27.0:="
15
DEPEND=">=net-libs/neon-0.34.0:="
19 16
RDEPEND="${DEPEND}"
17
BDEPEND="sys-devel/gettext"
20 18

  
21
DOCS=( BUGS ChangeLog FAQ NEWS README THANKS TODO )
19
DOCS=( BUGS ChangeLog FAQ NEWS README.md THANKS TODO )
22 20

  
23 21
PATCHES=(
24 22
	"${FILESDIR}"/${PN}-0.23.2-disable-nls.patch
......
27 25
src_prepare() {
28 26
	default
29 27

  
30
	rm -r lib/{expat,intl,neon} || die "rm failed"
31
	sed \
32
		-e "/NE_REQUIRE_VERSIONS/s:29:& 30 31 32:" \
33
		-e "/AM_GNU_GETTEXT/s:no-libtool:external:" \
34
		-e "/AC_CONFIG_FILES/s: lib/neon/Makefile lib/intl/Makefile::" \
35
		-i configure.ac || die "sed configure.ac failed"
36
	sed -e "s:^\(SUBDIRS.*=\).*:\1:" -i Makefile.in || die "sed Makefile.in failed"
37
	cp "${BROOT}"/usr/share/gettext/po/Makefile.in.in po || die "cp failed"
38

  
39
	config_rpath_update .
40
	AT_M4DIR="m4 m4/neon" eautoreconf
28
	rm -r lib/expat || die "rm failed"
41 29
}
42 30

  
43 31
src_configure() {
Thank you!