blob: c9013e391d21ea634fe2b889e7d88bfddd2eca66 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit toolchain-funcs
DESCRIPTION="low level mii diagnostic tools including mii-diag and etherwake (merge of netdiag/isa-diag)"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
SRC_URI="mirror://gentoo/${P}.tar.lzma"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="!sys-apps/nictools"
src_compile() {
tc-export CC AR
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodir /sbin
mv "${D}"/usr/sbin/{mii-diag,ether-wake} "${D}"/sbin/ || die
}
|