diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2018-08-10 05:36:02 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2018-08-10 05:36:02 -0400 |
commit | 54be628ff33bc8f0f11d6da22ee44379cf4a2157 (patch) | |
tree | 6b49fd4a75cb4ce61ec5cffb96df45ff5803ea41 /net-analyzer/2ping/2ping-4.1.2.ebuild | |
parent | net-p2p/rtorrent: remove old version 0.9.6.* (diff) | |
download | gentoo-54be628ff33bc8f0f11d6da22ee44379cf4a2157.tar.gz gentoo-54be628ff33bc8f0f11d6da22ee44379cf4a2157.tar.bz2 gentoo-54be628ff33bc8f0f11d6da22ee44379cf4a2157.zip |
net-analyzer/2ping: version bump to 4.1.2
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'net-analyzer/2ping/2ping-4.1.2.ebuild')
-rw-r--r-- | net-analyzer/2ping/2ping-4.1.2.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/net-analyzer/2ping/2ping-4.1.2.ebuild b/net-analyzer/2ping/2ping-4.1.2.ebuild new file mode 100644 index 000000000000..688c698a7823 --- /dev/null +++ b/net-analyzer/2ping/2ping-4.1.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +PYTHON_COMPAT=( python3_{4,5,6} ) + +inherit distutils-r1 + +DESCRIPTION="A bi-directional ping utility" +HOMEPAGE="https://www.finnie.org/software/2ping/" +SRC_URI="https://www.finnie.org/software/2ping/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" +IUSE="server" + +src_install() { + distutils-r1_src_install + doman doc/2ping.1 + dodoc doc/{2ping-protocol-examples.py,2ping-protocol.md} + use server && { + doinitd "${FILESDIR}"/2pingd + newconfd "${FILESDIR}"/2pingd.conf 2pingd + } +} |