blob: 0bdd8f729dbc535e2360ab9126ce7958102dff2d (
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-2004 Gentoo Technologies, Inc.
# 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.2 2004/04/26 12:44:43 agriffis 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="~x86"
SLOT="0"
LICENSE="BSD"
IUSE=""
DEPEND="virtual/glibc
dev-libs/libevent
sys-apps/sed"
RDEPEND="virtual/glibc"
src_compile() {
econf || die "econf failed"
make PREFIX=/usr || die
}
src_install() {
einstall || die
}
|