Сравнение jansson-2.14-r1 с jansson-2.14.1
| /usr/portage/dev-libs/jansson/jansson-2.14.1.ebuild 2025-07-29 16:22:13.160450487 +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 |
| 5 | 5 | |
| 6 |
inherit toolchain-funcs |
|
| 6 |
inherit autotools |
|
| 7 | 7 | |
| 8 | 8 |
DESCRIPTION="C library for encoding, decoding and manipulating JSON data" |
| 9 | 9 |
HOMEPAGE="https://www.digip.org/jansson/" |
| ... | ... | |
| 15 | 15 |
IUSE="doc static-libs" |
| 16 | 16 | |
| 17 | 17 |
BDEPEND=" |
| 18 |
sys-devel/binutils |
|
| 19 |
doc? ( dev-python/sphinx )" |
|
| 20 | ||
| 21 |
PATCHES=( "${FILESDIR}/${P}-test-symbols.patch" )
|
|
| 18 |
dev-build/autoconf-archive |
|
| 19 |
doc? ( dev-python/sphinx ) |
|
| 20 |
" |
|
| 21 | ||
| 22 |
PATCHES=( |
|
| 23 |
"${FILESDIR}"/jansson-2.14.1-default-symver-test.patch
|
|
| 24 |
) |
|
| 25 | ||
| 26 |
src_prepare() {
|
|
| 27 |
default |
|
| 28 |
eautoreconf |
|
| 29 |
} |
|
| 22 | 30 | |
| 23 | 31 |
src_configure() {
|
| 24 |
tc-ld-force-bfd |
|
| 25 | ||
| 26 | 32 |
econf $(use_enable static-libs static) |
| 27 | 33 |
} |
| 28 | 34 | |