Сравнение httping-2.5 с httping-2.9
/usr/portage/net-analyzer/httping/httping-2.9.ebuild 2023-10-09 14:52:33.316368447 +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 |
inherit toolchain-funcs flag-o-matic |
7 | 7 | |
8 | 8 |
DESCRIPTION="http protocol ping-like program" |
9 | 9 |
HOMEPAGE="https://www.vanheusden.com/httping/" |
10 |
SRC_URI="https://www.vanheusden.com/${PN}/${P}.tgz" |
|
10 |
SRC_URI="https://github.com/folkertvanheusden/HTTPing/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" |
|
11 |
S="${WORKDIR}"/HTTPing-${PV} |
|
11 | 12 | |
12 |
LICENSE="GPL-2" |
|
13 |
LICENSE="GPL-3" |
|
13 | 14 |
SLOT="0" |
14 |
KEYWORDS="amd64 ~arm64 ~hppa ~mips ~ppc ppc64 ~riscv ~sparc x86" |
|
15 |
KEYWORDS="~amd64 ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" |
|
15 | 16 |
IUSE="debug fftw l10n_nl ncurses ssl +tfo" |
16 | 17 | |
17 | 18 |
RDEPEND=" |
... | ... | |
33 | 34 |
src_prepare() { |
34 | 35 |
default |
35 | 36 | |
37 |
# Don't clobber toolchain defaults |
|
38 |
sed -i -e 's:-D_FORTIFY_SOURCE=2::' Makefile || die |
|
39 | ||
36 | 40 |
# doman does not get PN-LANG.CAT so we move things around and then point at |
37 | 41 |
# it later |
38 | 42 |
if use l10n_nl; then |
... | ... | |
52 | 56 |
# Don't require ncurses with unicode support |
53 | 57 |
# bug #731950 |
54 | 58 |
sed -i -e "s/-lncursesw/${ncurses_flags}/" Makefile || die |
55 |
append-ldflags "${ncurses_flags}" |
|
59 |
append-libs "${ncurses_flags}" |
|
56 | 60 |
fi |
57 | 61 |
} |
58 | 62 |