Diff dssp-4.3.1 with a dssp-4.4.1

/usr/portage/sci-chemistry/dssp/dssp-4.4.1.ebuild 2023-10-09 14:52:35.032368490 +0300
11 11
LICENSE="BSD-2"
12 12
SLOT="0"
13 13
KEYWORDS="~amd64 ~x86"
14
IUSE=""
14
# doc disabled as it only generates a PDF from the manpage for now
15
# https://github.com/PDB-REDO/dssp/issues/64
16
#IUSE="doc"
15 17

  
16
BDEPEND="
18
CDEPEND="
17 19
	dev-libs/boost:=[zlib]
18 20
	>=dev-libs/libmcfp-1.2.2
19 21
	>=sci-libs/libcifpp-5.1.0
20 22
"
23
BDEPEND="${CDEPEND}"
24
#	doc? (
25
#		|| ( app-text/pandoc-bin[pandoc-symlink] app-text/pandoc )
26
#		dev-python/weasyprint
27
#	)
21 28
DEPEND=""
22
RDEPEND="${BDEPEND}"
29
RDEPEND="${CDEPEND}"
30

  
31
#src_prepare() {
32
#	# wkhtmltopdf is not available on Gentoo
33
#	sed -i -e \
34
#		's/-t html/-t html --pdf-engine=weasyprint/' \
35
#		CMakeLists.txt
36
#	cmake_src_prepare
37
#}
23 38

  
24 39
src_configure() {
25
	# gxrio not packaged
26 40
	local mycmakeargs=(
27
		-DBUILD_WEBSERVER=OFF
41
		#-DGENERATE_DOCUMENTATION=$(usex doc)
42
		-DGENERATE_DOCUMENTATION=NO
28 43
	)
29 44
	cmake_src_configure
30 45
}
Thank you!