blob: bdf168248b759becc82422960132f6d6ba0c98b1 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: Exp $
DESCRIPTION="dynamips a Cisco 7200/3600 Simulator"
HOMEPAGE="http://www.ipflow.utc.fr/index.php/Cisco_7200_Simulator"
SRC_URI="http://www.ipflow.utc.fr/dynamips/${P}.tar.gz"
LICENSE="GPL-2"
SLOT=0
KEYWORDS="~amd64"
IUSE=""
DEPEND="net-libs/libpcap
|| ( dev-libs/libelf dev-libs/elfutils )"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e 's:PCAP_LIB=\/:#PCAP:g' Makefile || die
sed -i -e 's:#PCAP_LIB=-lpcap:PCAP_LIB=-lpcap:g' Makefile || die
if use amd64; then
sed -i -e 's:DYNAMIPS_ARCH?=x86:DYNAMIPS_ARCH?=amd64:g' Makefile || die
fi
}
src_compile() {
emake -j1 || die "emake ${P} failed"
# fails with -j2 or higher
}
src_install () {
dobin nvram_export dynamips || die
doman dynamips.1 hypervisor_mode.7 nvram_export.1
dodoc ChangeLog TODO README README.hypervisor
}
|