blob: 0b5ae46fd8899e3e430dafc78e82e49fde5ae65f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="Measures bandwidth and bytes through a command line pipe"
HOMEPAGE="http://zakalwe.fi/~shd/foss/pmr/"
SRC_URI="http://zakalwe.fi/~shd/foss/${PN}/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
src_install() {
dobin pmr || die "Failed to install binary"
doman doc/pmr.1 || die "Failed to install manpage"
}
|