Diff postgis-3.3.3 with a postgis-3.4.0-r1

/usr/portage/dev-db/postgis/postgis-3.4.0-r1.ebuild 2023-10-09 14:52:29.332368346 +0300
3 3

  
4 4
EAPI=7
5 5

  
6
POSTGRES_COMPAT=( {11..15} )
6
POSTGRES_COMPAT=( {12..16} )
7 7
POSTGRES_USEDEP="server"
8 8
inherit autotools postgres-multi toolchain-funcs
9 9

  
......
37 37
	dev-libs/libxml2:2
38 38
	dev-libs/protobuf-c:=
39 39
	>=sci-libs/geos-3.9.0
40
	>=sci-libs/proj-4.9.0:=
40
	>=sci-libs/proj-6.1.0:=
41 41
	>=sci-libs/gdal-1.10.0:=
42 42
	address-standardizer? ( dev-libs/libpcre2 )
43 43
	gtk? ( x11-libs/gtk+:2 )
......
55 55
PATCHES=(
56 56
	"${FILESDIR}/${PN}-3.0.3-try-other-cpp-names.patch"
57 57
	# source: https://github.com/google/flatbuffers/pull/7897
58
	"${FILESDIR}/${PN}-3.3.2-flatbuffers-abseil-2023.patch" # bug 905378
58
	#"${FILESDIR}/${PN}-3.3.2-flatbuffers-abseil-2023.patch" # bug 905378
59 59
)
60 60

  
61 61
src_prepare() {
......
116 116
		postgres-multi_foreach emake DESTDIR="${D}" comments-install
117 117

  
118 118
		docinto html
119
		postgres-multi_forbest dodoc doc/html/{postgis.html,style.css}
119
		postgres-multi_forbest dodoc doc/html/{postgis-en.html,style.css}
120 120

  
121 121
		docinto html/images
122
		postgres-multi_forbest dodoc doc/html/images/*
122
		postgres-multi_forbest dodoc -r doc/html/images/*
123 123
	fi
124 124

  
125 125
	use static-libs || find "${ED}" -name '*.a' -delete
Thank you!