diff options
author | Sam James <sam@gentoo.org> | 2022-06-16 23:00:16 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-06-16 23:09:33 +0100 |
commit | 93370b9dfa60df402db1cca61679a3467eb00f06 (patch) | |
tree | 4b43210e8189ab746796630f0c74793ea46d69f3 /net-analyzer/httping/httping-9999999.ebuild | |
parent | net-analyzer/nessus-agent-bin: add 10.1.4, drop 10.1.3 (diff) | |
download | gentoo-93370b9dfa60df402db1cca61679a3467eb00f06.tar.gz gentoo-93370b9dfa60df402db1cca61679a3467eb00f06.tar.bz2 gentoo-93370b9dfa60df402db1cca61679a3467eb00f06.zip |
net-analyzer/httping: drop 9999999
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer/httping/httping-9999999.ebuild')
-rw-r--r-- | net-analyzer/httping/httping-9999999.ebuild | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/net-analyzer/httping/httping-9999999.ebuild b/net-analyzer/httping/httping-9999999.ebuild deleted file mode 100644 index c3e262a43ac8..000000000000 --- a/net-analyzer/httping/httping-9999999.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit git-r3 toolchain-funcs flag-o-matic - -DESCRIPTION="like ping but for HTTP requests" -HOMEPAGE="https://www.vanheusden.com/httping/" -EGIT_REPO_URI="https://github.com/flok99/httping" - -LICENSE="GPL-2" -SLOT="0" -IUSE="debug fftw l10n_nl ncurses ssl +tfo" - -RDEPEND=" - fftw? ( sci-libs/fftw:3.0 ) - ncurses? ( sys-libs/ncurses:0= ) - ssl? ( dev-libs/openssl:0= ) -" -DEPEND="${RDEPEND}" -BDEPEND="ncurses? ( virtual/pkgconfig )" - -# This would bring in test? ( dev-util/cppcheck ) but unlike -# upstream we should only care about compile/run time testing -RESTRICT="test" - -PATCHES=( - "${FILESDIR}"/${PN}-2.2.1-flags.patch -) - -src_prepare() { - default - - # doman does not get PN-LANG.CAT so we move things around and then point at - # it later - if use l10n_nl; then - mkdir nl || die - mv httping-nl.1 nl/httping.1 || die - fi -} - -src_configure() { - # not an autotools script - echo > makefile.inc || die - - if use ncurses ; then - local ncurses_flags="$($(tc-getPKG_CONFIG) --libs ncurses)" - - # Don't require ncurses with unicode support - # bug #731950 - sed -i -e "s/-lncursesw/${ncurses_flags}/" Makefile || die - append-ldflags "${ncurses_flags}" - fi -} - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - FW=$(usex fftw) \ - DEBUG=$(usex debug) \ - NC=$(usex ncurses) \ - SSL=$(usex ssl) \ - TFO=$(usex tfo) -} - -src_install() { - dobin httping - doman httping.1 - - use l10n_nl && doman -i18n=nl nl/httping.1 -} |