blob: e9f173afff5a8eccc9126b95dad629d1b782dde8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="TCP/IP-based ping implementation"
HOMEPAGE="https://directory.fsf.org/security/system/poink.html"
SRC_URI="https://ep09.pld-linux.org/~mmazur/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
PATCHES=( "${FILESDIR}/${PN}-2.03-signed-char-fixup.patch" )
src_compile() {
emake \
CFLAGS="${CFLAGS} ${LDFLAGS}" \
CC="$(tc-getCC)"
}
src_install() {
dobin poink poink6
newman ping.1 poink.1
dodoc README* ChangeLog
}
|