Diff lrzsz-0.12.20-r5 with a lrzsz-0.12.20-r7
/usr/portage/net-dialup/lrzsz/lrzsz-0.12.20-r7.ebuild 2023-10-09 14:52:33.348368447 +0300 | ||
---|---|---|
1 | 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 |
inherit autotools toolchain-funcs |
7 | 7 | |
8 | 8 |
DESCRIPTION="Communication package providing the X, Y, and ZMODEM file transfer protocols" |
9 | 9 |
HOMEPAGE="https://www.ohse.de/uwe/software/lrzsz.html" |
10 |
SRC_URI="https://www.ohse.de/uwe/releases/${P}.tar.gz" |
|
10 |
SRC_URI=" |
|
11 |
https://www.ohse.de/uwe/releases/${P}.tar.gz |
|
12 |
https://dev.gentoo.org/~ceamac/${CATEGORY}/${PN}/${PN}-m4-${PV}.tar.bz2 |
|
13 |
" |
|
11 | 14 | |
12 | 15 |
LICENSE="GPL-2" |
13 | 16 |
SLOT="0" |
14 |
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" |
|
17 |
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" |
|
15 | 18 |
IUSE="nls" |
16 | 19 | |
17 | 20 |
DEPEND="nls? ( virtual/libintl )" |
21 |
BDEPEND="nls? ( sys-devel/gettext )" |
|
18 | 22 | |
19 | 23 |
PATCHES=( |
20 | 24 |
"${FILESDIR}"/${PN}-autotools.patch |
... | ... | |
24 | 28 |
"${FILESDIR}"/${P}-gettext-0.20.patch |
25 | 29 |
"${FILESDIR}"/${P}-AR.patch |
26 | 30 |
"${FILESDIR}"/${P}-configure-clang16.patch |
31 |
"${FILESDIR}"/${P}-gettext-0.22.patch |
|
32 |
"${FILESDIR}"/${P}-disable-nls.patch |
|
27 | 33 |
) |
28 | 34 | |
29 | 35 |
DOCS=( AUTHORS COMPATABILITY ChangeLog NEWS \ |
... | ... | |
35 | 41 |
# automake is unhappy if this is missing |
36 | 42 |
>> config.rpath || die |
37 | 43 |
# This is too old. Remove it so automake puts in a newer copy. |
38 |
rm -f missing || die |
|
44 |
rm missing || die |
|
39 | 45 |
# Autoheader does not like seeing this file. |
40 |
rm -f acconfig.h || die |
|
46 |
rm acconfig.h || die |
|
47 |
# embed default m4 files in case gettext is not installed |
|
48 |
mv "${WORKDIR}"/m4 . || die |
|
41 | 49 | |
42 | 50 |
eautoreconf |
43 | 51 |
} |