Diff ocamlnet-4.1.8-r1 with a ocamlnet-4.1.9-r1

/usr/portage/dev-ml/ocamlnet/ocamlnet-4.1.9-r1.ebuild 2024-12-25 14:59:48.391270072 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2024 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
......
35 35
"
36 36
DEPEND="${RDEPEND}"
37 37

  
38
PATCHES=(
39
	"${FILESDIR}"/${P}-unboundLexer.patch
40
	"${FILESDIR}"/${P}-shuffle.patch
41
	"${FILESDIR}"/${P}-noWhich.patch
42
)
43

  
38 44
ocamlnet_use_with() {
39 45
	if use $1; then
40 46
		echo "-with-$2"
......
51 57
	fi
52 58
}
53 59

  
60
src_prepare() {
61
	sed -i \
62
		-e "s:^version.*$:version=${PV}:" \
63
		configure \
64
		|| die
65
	default
66
}
67

  
54 68
src_configure() {
55 69
	./configure \
56 70
		-bindir /usr/bin \
Thank you!