Diff postgis-3.4.0-r2 with a postgis-9999

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

  
4 4
EAPI=7
5 5

  
6
POSTGRES_COMPAT=( {12..16} )
6
POSTGRES_COMPAT=( 9.6 {10..14} )
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-6.1.0:=
40
	>=sci-libs/proj-4.9.0:=
41 41
	>=sci-libs/gdal-1.10.0:=
42 42
	address-standardizer? ( dev-libs/libpcre2 )
43 43
	gtk? ( x11-libs/gtk+:2 )
......
53 53
"
54 54

  
55 55
PATCHES=(
56
	"${FILESDIR}/${PN}-2.2.0-arflags.patch"
57
	"${FILESDIR}/${PN}-3.0.3-avoid-calling-ar-directly.patch"
56 58
	"${FILESDIR}/${PN}-3.0.3-try-other-cpp-names.patch"
57
	"${FILESDIR}/${PN}-3.4.0-without-gui.patch"
58
	# source: https://github.com/google/flatbuffers/pull/7897
59
	#"${FILESDIR}/${PN}-3.3.2-flatbuffers-abseil-2023.patch" # bug 905378
60 59
)
61 60

  
62 61
src_prepare() {
......
98 97

  
99 98
	if use doc ; then
100 99
		postgres-multi_foreach emake comments
101
		postgres-multi_forbest emake cheatsheets
100
		postgres-multi_foreach emake cheatsheets
102 101
		postgres-multi_forbest emake -C doc html
103 102
	fi
104 103
}
......
115 114

  
116 115
	if use doc ; then
117 116
		postgres-multi_foreach emake DESTDIR="${D}" comments-install
118
		postgres-multi_forbest emake DESTDIR="${D}" -C doc cheatsheet-install html-install html-assets-install
117

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

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

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