Сравнение bitset-2.8.4-r3 с bitset-2.8.4-r4
| /usr/portage/dev-libs/bitset/bitset-2.8.4-r4.ebuild 2026-03-28 11:46:07.749480589 +0300 | ||
|---|---|---|
| 1 |
# Copyright 1999-2021 Gentoo Authors |
|
| 1 |
# Copyright 1999-2026 Gentoo Authors |
|
| 2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 | |
| 4 |
EAPI=7 |
|
| 4 |
EAPI=8 |
|
| 5 | 5 | |
| 6 | 6 |
inherit autotools |
| 7 | 7 | |
| ... | ... | |
| 11 | 11 | |
| 12 | 12 |
LICENSE="LGPL-2.1" |
| 13 | 13 |
SLOT="0" |
| 14 |
IUSE="jemalloc static-libs tcmalloc" |
|
| 15 | 14 |
KEYWORDS="amd64 ~arm x86" |
| 15 |
IUSE="static-libs tcmalloc" |
|
| 16 | 16 | |
| 17 | 17 |
RDEPEND=" |
| 18 | 18 |
tcmalloc? ( dev-util/google-perftools:= ) |
| 19 |
jemalloc? ( >=dev-libs/jemalloc-3.2 ) |
|
| 20 | 19 |
" |
| 21 | 20 |
DEPEND="${RDEPEND}"
|
| 22 | 21 | |
| 23 |
REQUIRED_USE="?? ( jemalloc tcmalloc )" |
|
| 24 | ||
| 25 | 22 |
DOCS=( README.md ) |
| 26 | 23 | |
| 27 | 24 |
src_prepare() {
|
| ... | ... | |
| 40 | 37 |
has_version dev-util/google-perftools[minimal] && tcmalloc_lib_name='tcmalloc_minimal' |
| 41 | 38 | |
| 42 | 39 |
local myeconfargs=( |
| 43 |
$(use_with jemalloc) \ |
|
| 44 | 40 |
$(use_with tcmalloc) \ |
| 45 | 41 |
$(use_with tcmalloc tcmalloc-lib "${tcmalloc_lib_name}")
|
| 46 | 42 |
) |