Diff hidapi-0.12.0 with a hidapi-0.12.0-r1

/usr/portage/dev-libs/hidapi/hidapi-0.12.0-r1.ebuild 2023-10-09 14:52:29.500368350 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
14 14
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
15 15
IUSE="doc"
16 16

  
17
RDEPEND="
17
DEPEND="
18 18
	virtual/libusb:1[${MULTILIB_USEDEP}]
19 19
	virtual/libudev:0[${MULTILIB_USEDEP}]"
20
DEPEND="${RDEPEND}"
20
RDEPEND="${DEPEND}"
21 21
BDEPEND="
22
	virtual/pkgconfig
23 22
	doc? ( app-doc/doxygen )"
24 23

  
25 24
S="${WORKDIR}/${PN}-${P}"
......
28 27
	cmake_src_compile
29 28

  
30 29
	if use doc && multilib_is_native_abi; then
31
		doxygen "${S}/doxygen/Doxyfile" || die
30
		cd "${S}/doxygen"
31
		doxygen Doxyfile || die
32 32
	fi
33 33
}
34 34

  
......
36 36
	cmake_src_install
37 37

  
38 38
	if use doc && multilib_is_native_abi; then
39
		local HTML_DOCS=( html/. )
39
		local HTML_DOCS=( "${S}/doxygen/html/." )
40 40
	fi
41 41
	einstalldocs
42 42
}
Thank you!