summaryrefslogtreecommitdiff
blob: 0c8a5f202439ad78b2d08c2cf5d383fc251fd48f (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/mii-diag/mii-diag-2.09.ebuild,v 1.8 2005/06/12 20:29:07 vapier Exp $

inherit eutils toolchain-funcs

MIIVER=${PV}
LIBVER=2.10

DESCRIPTION="MII link status report and diagnostics"
HOMEPAGE="http://www.scyld.com/ethercard_diag.html"
# Files below are small and unversioned so I put them in the files dir
# with version suffixes.
SRC_URI=""	# ftp://ftp.scyld.com/pub/diag/mii-diag.c
			# ftp://ftp.scyld.com/pub/diag/libmii.c

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~mips ~ppc ~sparc x86"
IUSE=""

DEPEND=""

S=${WORKDIR}

src_unpack() {
	cp "${FILESDIR}"/mii-diag.c-${MIIVER} mii-diag.c || die "mii-diag.c"
	cp "${FILESDIR}"/libmii.c-${LIBVER} libmii.c || die "libmii.c"
	epatch "${FILESDIR}"/mii-diag.c-${PV}-gcc33.patch
}

src_compile() {
	# Don't change -O below, it is a requirement for building these
	# programs.  See http://www.scyld.com/ethercard_diag.html#compiling
	$(tc-getCC) -O ${LDFLAGS} -c libmii.c || die
	$(tc-getCC) -O ${LDFLAGS} -DLIBMII mii-diag.c libmii.o -o mii-diag || die
}

src_install() {
	into /
	dosbin mii-diag || die
}