blob: 2d5eeb08f6f28ee9d744ca2ca31f643b838bfebb (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nam/nam-1.11.ebuild,v 1.5 2006/08/01 23:24:39 vanquirius Exp $
inherit eutils
DESCRIPTION="Network Simulator GUI for NS"
HOMEPAGE="http://www.isi.edu/nsnam/${PN}/"
MY_P="${PN}-src-${PV}"
SRC_URI_BASE="http://www.isi.edu/nsnam/dist/"
SRC_URI="${SRC_URI_BASE}/${MY_P}.tar.gz
${SRC_URI_BASE}/${P}.patch"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="debug"
need_tclver="8.4.4"
valid_tclver="${need_tclver}"
mytclver=""
DEPEND="|| ( x11-libs/libXmu virtual/x11 )
>=dev-lang/tcl-${need_tclver}
>=dev-lang/tk-${need_tclver}
>=dev-tcltk/otcl-1.0.8a
>=dev-tcltk/tclcl-1.0.13b
dev-tcltk/tcl-debug"
RDEPEND=">=net-analyzer/ns-2.27
${DEPEND}"
findtclver() {
# input should always be in INCREASING order
local ACCEPTVER="8.3 8.4"
[ -n "$*" ] && ACCEPTVER="$*"
for i in ${ACCEPTVER}; do
use debug && einfo "Testing TCL ${i}"
# we support being more specific
[ "$(#i)" = "3" ] && i="${i}*"
has_version ">=dev-lang/tcl-${i}" && mytclver=${i}
done
use debug && einfo "Using TCL ${mytclver}"
if [ -z "${mytclver}" ]; then
die "Unable to find a suitable version of TCL"
fi
}
src_unpack() {
unpack ${MY_P}.tar.gz
EPATCH_OPTS="-d ${S} -p0" epatch "${DISTDIR}"/${P}.patch
# bug 137053
epatch "${FILESDIR}"/${PN}-1.11-gcc4.patch
}
src_compile() {
local myconf
findtclver ${valid_tclver}
myconf="${myconf} --with-tcl-ver=${mytclver} --with-tk-ver=${mytclver}"
econf ${myconf} \
--mandir=/usr/share/man \
--enable-stl \
--enable-release \
|| die "./configure failed"
emake || die
}
src_install() {
dodir /usr/bin
emake DESTDIR="${D}" install || die
doman nam.1
dohtml CHANGES.html TODO.html
dodoc FILES VERSION INSTALL.WIN32 README
docinto iecdemos ; dodoc iecdemos/*
docinto edu ; dodoc edu/*
docinto examples ; dodoc ex/*
}
|