You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/valve/valve-1.0.ebuild

30 lines
647 B

# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
DESCRIPTION="Copies data while enforcing a specified maximum transfer rate"
HOMEPAGE="http://www.fourmilab.ch/webtools/valve/"
SRC_URI="http://www.fourmilab.ch/webtools/valve/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE="doc"
DEPEND=""
src_compile() {
econf || die
emake CTANGLE='' CWEAVE='' || die
}
src_install() {
dobin valve || die
doman valve.1 || die
dodoc README valve.pdf || die
dohtml index.html logo.png || die
}
src_test() {
emake CTANGLE='' CWEAVE='' check || die "check failed"
}