Lines 1-4
Link Here
|
1 |
# Copyright 1999-2020 Gentoo Authors |
1 |
# Copyright 1999-2021 Gentoo Authors |
2 |
# Distributed under the terms of the GNU General Public License v2 |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
|
3 |
|
4 |
EAPI=7 |
4 |
EAPI=7 |
Lines 50-56
multilib_src_compile() {
Link Here
|
50 |
cmake_src_compile |
50 |
cmake_src_compile |
51 |
|
51 |
|
52 |
if multilib_is_native_abi && use doc; then |
52 |
if multilib_is_native_abi && use doc; then |
53 |
emake doxygen |
53 |
cmake_build doxygen |
54 |
fi |
54 |
fi |
55 |
} |
55 |
} |
56 |
|
56 |
|
Lines 62-68
multilib_src_install() {
Link Here
|
62 |
mkdir docs || die |
62 |
mkdir docs || die |
63 |
mv doc_c/html docs/c || die |
63 |
mv doc_c/html docs/c || die |
64 |
|
64 |
|
65 |
use cxx && mv doc_cpp/html docs/cpp || die |
65 |
if use cxx; then |
|
|
66 |
mv doc_cpp/html docs/cpp || die |
67 |
fi |
66 |
fi |
68 |
fi |
67 |
|
69 |
|
68 |
if use examples; then |
70 |
if use examples; then |
69 |
- |
|
|