Сравнение help2man-1.48.5 с help2man-1.49.3
/usr/portage/sys-apps/help2man/help2man-1.49.3.ebuild 2023-10-09 14:52:35.376368499 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2022 Gentoo Authors |
|
1 |
# Copyright 1999-2023 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 |
DESCRIPTION="GNU utility to convert program --help output to a man page" |
7 |
HOMEPAGE="https://www.gnu.org/software/help2man/" |
|
7 |
HOMEPAGE="https://www.gnu.org/software/help2man/ https://salsa.debian.org/bod/help2man" |
|
8 | 8 |
SRC_URI="mirror://gnu/${PN}/${P}.tar.xz" |
9 | 9 | |
10 | 10 |
# nls/FSFAP for bindtextdomain.c |
11 | 11 |
LICENSE="GPL-3+ nls? ( FSFAP )" |
12 | 12 |
SLOT="0" |
13 |
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" |
|
13 |
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" |
|
14 | 14 |
IUSE="nls" |
15 | 15 | |
16 | 16 |
RDEPEND="dev-lang/perl |
17 | 17 |
nls? ( dev-perl/Locale-gettext )" |
18 | 18 |
DEPEND="${RDEPEND}" |
19 | 19 | |
20 |
DOCS=( debian/changelog NEWS README THANKS ) #385753 |
|
20 |
# bug #385753 |
|
21 |
DOCS=( debian/changelog NEWS README THANKS ) |
|
21 | 22 | |
22 | 23 |
PATCHES=( |
23 | 24 |
"${FILESDIR}"/${PN}-1.46.1-linguas.patch |
... | ... | |
29 | 30 |
-e 's/-shared/-bundle/' \ |
30 | 31 |
Makefile.in || die |
31 | 32 |
fi |
33 | ||
32 | 34 |
default |
33 | 35 |
} |
34 | 36 | |
35 | 37 |
src_configure() { |
36 |
# Disable gettext requirement as the release includes the gmo files #555018 |
|
38 |
# Disable gettext requirement as the release includes the gmo files, bug #555018 |
|
37 | 39 |
local myeconfargs=( |
38 | 40 |
ac_cv_path_MSGFMT=$(type -P false) |
39 | 41 |
$(use_enable nls) |
40 | 42 |
) |
43 | ||
41 | 44 |
econf "${myeconfargs[@]}" |
42 | 45 |
} |