blob: 9e1f076f79d8d684a0f27c87970fc24b78dd3286 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="display the current traffic on all network devices"
HOMEPAGE="http://www.isotton.com/software/unix/cbm/"
SRC_URI="http://www.isotton.com/software/unix/${PN}/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="sys-libs/ncurses"
DEPEND="${RDEPEND}
app-text/xmlto"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/gcc-4.3.patch"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
|