blob: dd07402f4dfa96f47186595f3052d167bbdb3dae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/trickle/trickle-1.06.ebuild,v 1.7 2005/07/06 23:07:48 herbs Exp $
DESCRIPTION="a portable lightweight userspace bandwidth shaper"
SRC_URI="http://www.monkey.org/~marius/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.monkey.org/~marius/trickle/"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
SLOT="0"
LICENSE="BSD"
IUSE=""
DEPEND="virtual/libc
dev-libs/libevent
sys-apps/sed"
RDEPEND="virtual/libc"
src_compile() {
econf || die "econf failed"
make PREFIX=/usr || die
}
src_install() {
einstall || die
}
|