blob: a0811fe0158755fc540280f3f1eb7e933680db36 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bmon/bmon-3.2.ebuild,v 1.5 2014/07/22 09:09:54 nimiux Exp $
EAPI=5
inherit autotools eutils linux-info toolchain-funcs
DESCRIPTION="interface bandwidth monitor"
HOMEPAGE="http://www.infradead.org/~tgr/bmon/"
SRC_URI="
https://codeload.github.com/tgraf/${PN}/tar.gz/v${PV} -> ${P}.tar.gz
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 hppa ~ppc ~sparc ~x86"
RDEPEND="
>=sys-libs/ncurses-5.3-r2
dev-libs/confuse
dev-libs/libnl:3
"
DEPEND="
${RDEPEND}
virtual/pkgconfig
"
DOCS=( ChangeLog )
CONFIG_CHECK="~NET_SCHED"
ERROR_NET_SCHED="
CONFIG_NET_SCHED is not set when it should be.
Run ${PN} -i proc to use the deprecated proc interface instead.
"
src_prepare() {
epatch_user
eautoreconf
}
src_configure() {
econf \
CURSES_LIB="$( $(tc-getPKG_CONFIG) --libs ncurses)"
}
|