Diff pv-1.6.20 with a pv-1.7.24
/usr/portage/sys-apps/pv/pv-1.7.24.ebuild 2023-10-09 14:52:35.400368499 +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 | 4 |
EAPI=8 |
5 | 5 | |
6 |
PLOCALES="de fr pl pt" |
|
7 |
PLOCALE_BACKUP="en" |
|
6 | 8 |
inherit linux-info toolchain-funcs plocale |
7 | 9 | |
8 | 10 |
DESCRIPTION="Pipe Viewer: a tool for monitoring the progress of data through a pipe" |
9 | 11 |
HOMEPAGE="https://www.ivarch.com/programs/pv.shtml" |
10 |
SRC_URI="https://www.ivarch.com/programs/sources/${P}.tar.bz2" |
|
12 |
SRC_URI="https://www.ivarch.com/programs/sources/${P}.tar.gz" |
|
11 | 13 | |
12 | 14 |
LICENSE="Artistic-2" |
13 | 15 |
SLOT="0" |
14 | 16 |
KEYWORDS="~alpha amd64 arm arm64 hppa ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" |
15 | 17 |
IUSE="debug nls" |
16 | 18 | |
17 |
PLOCALES="de fr pl pt" |
|
18 |
PLOCALE_BACKUP="en" |
|
19 | ||
20 |
DOCS=( README doc/NEWS doc/TODO ) |
|
21 | ||
22 |
# Doesn't build a library. |
|
23 |
QA_CONFIGURE_OPTIONS="--disable-static" |
|
19 |
DOCS=( README.md doc/NEWS.md doc/TODO.md ) |
|
24 | 20 | |
25 | 21 |
pkg_setup() { |
26 | 22 |
if use kernel_linux; then |
... | ... | |
40 | 36 |
-e 's:$(LD) $(LDFLAGS) -o:$(AR) rc:' \ |
41 | 37 |
autoconf/make/modules.mk~ || die |
42 | 38 | |
43 |
sed -i -e 's:usleep 200000 || ::g' tests/019-remote-cksum || die |
|
44 | ||
45 | 39 |
disable_locale() { |
46 | 40 |
local locale=${1} |
47 | 41 |
sed -i configure -e "/ALL_LINGUAS=/s:${locale}::g" || die |
... | ... | |
58 | 52 |
$(use_enable debug debugging) \ |
59 | 53 |
$(use_enable nls) |
60 | 54 |
} |
55 | ||
56 |
src_test() { |
|
57 |
emake -Onone check |
|
58 |
} |