27 lines
695 B
Bash
27 lines
695 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ssmping/ssmping-0.9.1.ebuild,v 1.3 2011/12/19 18:32:27 ago Exp $
|
|
|
|
EAPI="3"
|
|
|
|
inherit eutils toolchain-funcs
|
|
|
|
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=""
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${PN}-0.9-build.patch #240750
|
|
tc-export CC
|
|
}
|
|
|
|
src_install() {
|
|
dobin ssmping asmping mcfirst || die
|
|
dosbin ssmpingd || die
|
|
doman ssmping.1 asmping.1 mcfirst.1
|
|
}
|