blob: eb5789fdac3791607af35f90a4a4697f09b4ad5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ssmping/ssmping-0.9-r1.ebuild,v 1.2 2007/04/12 10:48:12 welp Exp $
inherit toolchain-funcs eutils
DESCRIPTION="Tool for testing multicast connectivity"
HOMEPAGE="http://www.venaas.no/multicast/ssmping/"
SRC_URI="http://www.venaas.no/multicast/ssmping/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE=""
DEPEND="virtual/libc"
src_install() {
dobin ssmping asmping mcfirst
dosbin ssmpingd
doman ssmping.1 asmping.1 mcfirst.1
}
|