Diff portage-utils-0.96.1 with a portage-utils-0.97
| /usr/portage/app-portage/portage-utils/portage-utils-0.97.ebuild 2025-02-03 17:39:32.314665085 +0300 | ||
|---|---|---|
| 1 |
# Copyright 1999-2024 Gentoo Authors |
|
| 1 |
# Copyright 1999-2025 Gentoo Authors |
|
| 2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 | |
| 4 | 4 |
EAPI=8 |
| ... | ... | |
| 18 | 18 | |
| 19 | 19 |
LICENSE="GPL-2" |
| 20 | 20 |
SLOT="0" |
| 21 |
IUSE="openmp +qmanifest +qtegrity static" |
|
| 21 |
IUSE="openmp +qmanifest static" |
|
| 22 | 22 | |
| 23 | 23 |
RDEPEND=" |
| 24 | 24 |
openmp? ( || ( |
| ... | ... | |
| 29 | 29 |
!static? ( |
| 30 | 30 |
app-crypt/gpgme:= |
| 31 | 31 |
app-crypt/libb2:= |
| 32 |
dev-libs/openssl:= |
|
| 33 | 32 |
sys-libs/zlib:= |
| 34 | 33 |
) |
| 35 |
) |
|
| 36 |
qtegrity? ( |
|
| 37 |
!static? ( |
|
| 38 |
dev-libs/openssl:= |
|
| 39 |
) |
|
| 40 | 34 |
)" |
| 41 | 35 |
DEPEND="${RDEPEND}
|
| 42 | 36 |
qmanifest? ( |
| 43 | 37 |
static? ( |
| 44 | 38 |
app-crypt/gpgme[static-libs] |
| 45 | 39 |
app-crypt/libb2[static-libs] |
| 46 |
dev-libs/openssl[static-libs] |
|
| 47 | 40 |
sys-libs/zlib[static-libs] |
| 48 | 41 |
) |
| 49 |
) |
|
| 50 |
qtegrity? ( |
|
| 51 |
static? ( |
|
| 52 |
dev-libs/openssl[static-libs] |
|
| 53 |
) |
|
| 54 | 42 |
)" |
| 55 | 43 |
BDEPEND="virtual/pkgconfig" |
| 56 | 44 | |
| 57 |
# bug #898362, gnulib check explicitly looks for MIN in some headers |
|
| 58 |
QA_CONFIG_IMPL_DECL_SKIP="MIN" |
|
| 45 |
# bug #898362, gnulib explicit checks |
|
| 46 |
QA_CONFIG_IMPL_DECL_SKIP=( |
|
| 47 |
"MIN" |
|
| 48 |
"unreachable" |
|
| 49 |
"alignof" |
|
| 50 |
"static_assert" |
|
| 51 |
) |
|
| 59 | 52 | |
| 60 | 53 |
pkg_setup() {
|
| 61 | 54 |
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
|
| ... | ... | |
| 73 | 66 |
--disable-maintainer-mode \ |
| 74 | 67 |
--with-eprefix="${EPREFIX}" \
|
| 75 | 68 |
$(use_enable qmanifest) \ |
| 76 |
$(use_enable qtegrity) \ |
|
| 77 | 69 |
$(use_enable openmp) |
| 78 | 70 |
} |