blob: 29db9fffb1c591f6e9eaa46d4a8775df06ba4c67 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-misc/gt-itm/gt-itm-19961004.ebuild,v 1.3 2009/09/28 22:00:09 robbat2 Exp $
DESCRIPTION="A collection of routines to generate and analyze graphs using a wide variety of models for internetwork topology"
HOMEPAGE="http://www.cc.gatech.edu/fac/Ellen.Zegura/graphs.html
http://www.isi.edu/nsnam/ns/ns-topogen.html#gt-itm"
SRC_URI="http://www.cc.gatech.edu/fac/Ellen.Zegura/gt-itm/gt-itm.tar.gz
http://www.isi.edu/nsnam/dist/sgb2ns.tar.gz"
LICENSE="as-is BSD"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="dev-util/sgb"
S="${WORKDIR}/${PN}"
S2="${WORKDIR}/sgb2ns"
src_unpack() {
unpack sgb2ns.tar.gz
mkdir "${S}"
cd "${S}"
unpack gt-itm.tar.gz
sed -r -e '/^[[:alnum:]]+\.o:/d' -e 's|LIBS = -lm -lgb.*|LIBS = -lm -lgb|' -i "${S}"/src/Makefile
sed -r -e '/^SYS = -DSYSV/d' -e 's|LIBS = -lm -lgb.*|LIBS = -lm -lgb|' -i ${S2}/Makefile || die
rm -f "${S}"/lib/*
find "${S}"/sample-graphs/ -perm +111 -type f -name 'Run*' \
| xargs -r -n1 sed -re 's|(\.\./)+bin/||g' -i || die
sed -e 's|sys/types.h|sys/param.h|' -i "${S}"/src/geog.c
sed -e '162 s/connected $/connected \\/' -i "${S}"/src/eval.c
}
src_compile() {
cd "${S}"/src
emake CFLAGS="${CFLAGS} -I../include" || die
cd "${S2}"
emake CFLAGS="${CFLAGS} -I\$(IDIR) -L\$(LDIR)" || die
}
src_install() {
dobin "${S}"/bin/*
dodoc "${S}"/README "${S}"/docs/*
cp -pPR "${S}"/sample-graphs "${D}"/usr/share/doc/${PF}
cd "${S2}"
dodoc *.tcl *.gb
newdoc README README.sgb2ns
}
|