blob: 39a0ac050066083be223289e3412a688b7362fb8 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/traceroute-nanog/traceroute-nanog-6.3.10-r1.ebuild,v 1.9 2010/07/06 14:41:01 jer Exp $
inherit eutils toolchain-funcs
MY_P="${PN}_${PV}"
DEB_PL="2"
DESCRIPTION="Traceroute with AS lookup, TOS support, MTU discovery and other features"
HOMEPAGE="http://packages.debian.org/traceroute-nanog"
SRC_URI="mirror://gentoo/${MY_P}.orig.tar.gz
mirror://gentoo/${MY_P}-${DEB_PL}.diff.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
DEPEND=""
S="${S}.orig"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${WORKDIR}/${MY_P}-${DEB_PL}.diff"
}
src_compile() {
$(tc-getCC) traceroute.c -o ${PN} ${CFLAGS} -lresolv -lm || die "Compile failed"
}
src_install() {
dosbin traceroute-nanog || die "dosbin failed"
dodoc 0_readme.txt faq.txt
newman ${P}/debian/traceroute-nanog.8 traceroute-nanog.8 || die "newman failed"
}
|