Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad/
Date: Tue, 11 Jan 2022 23:46:25
Message-Id: 1641943229.79739fd24ba548e14dea516d644bfae16e2fb67b.sam@gentoo
1 commit: 79739fd24ba548e14dea516d644bfae16e2fb67b
2 Author: Yehoshua Pesach Wallach <yehoshuapw <AT> gmail <DOT> com>
3 AuthorDate: Mon Jan 10 21:07:40 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 11 23:20:29 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79739fd2
7
8 sci-electronics/kicad: remove dev-docs from build
9
10 It seems in kicad-6.0.0, there is no more "dev-docs" target in the ninja
11 doc built.
12
13 Closes: https://bugs.gentoo.org/827442
14 Package-Manager: Portage-3.0.28, Repoman-3.0.3
15 Signed-off-by: Yehoshua Pesach Wallach <yehoshuapw <AT> gmail.com>
16 Closes: https://github.com/gentoo/gentoo/pull/23733
17 Signed-off-by: Sam James <sam <AT> gentoo.org>
18
19 sci-electronics/kicad/kicad-6.0.0.ebuild | 6 +++---
20 1 file changed, 3 insertions(+), 3 deletions(-)
21
22 diff --git a/sci-electronics/kicad/kicad-6.0.0.ebuild b/sci-electronics/kicad/kicad-6.0.0.ebuild
23 index 8840070ef1e9..6d322061c84e 100644
24 --- a/sci-electronics/kicad/kicad-6.0.0.ebuild
25 +++ b/sci-electronics/kicad/kicad-6.0.0.ebuild
26 @@ -1,4 +1,4 @@
27 -# Copyright 1999-2021 Gentoo Authors
28 +# Copyright 1999-2022 Gentoo Authors
29 # Distributed under the terms of the GNU General Public License v2
30
31 EAPI=7
32 @@ -123,7 +123,7 @@ src_configure() {
33 src_compile() {
34 cmake_src_compile
35 if use doc; then
36 - cmake_src_compile dev-docs doxygen-docs
37 + cmake_src_compile doxygen-docs
38 fi
39 }
40
41 @@ -142,7 +142,7 @@ src_install() {
42 if use doc ; then
43 dodoc uncrustify.cfg
44 cd Documentation || die
45 - dodoc -r *.txt kicad_doxygen_logo.png notes_about_pcbnew_new_file_format.odt doxygen/. development/doxygen/.
46 + dodoc -r *.txt kicad_doxygen_logo.png notes_about_pcbnew_new_file_format.odt doxygen/.
47 fi
48 }