# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Tool to test TCP and UDP throughput" HOMEPAGE="http://ftp.arl.mil/~mike/ttcp.html" SRC_URI="http://ftp.arl.mil/ftp/pub/ttcp/sgi-ttcp.c http://ftp.arl.mil/ftp/pub/ttcp/sgi-ttcp.1" LICENSE="public-domain" SLOT="0" KEYWORDS="x86 ppc sparc" IUSE="" DEPEND="virtual/glibc" RDEPEND="virtual/glibc" S="${WORKDIR}" src_unpack() { for file in ${A}; do cp ${DISTDIR}/${file} ${S}/${file/sgi-//} done } src_compile() { ${CC} ${CFLAGS} -w -o ttcp ttcp.c } src_install() { exeinto /usr/bin doexe ${S}/ttcp doman ${S}/ttcp.1 }