diff options
author | David Seifert <soap@gentoo.org> | 2016-09-24 15:27:57 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-09-24 15:30:22 +0200 |
commit | a93f48e744c83be91a03b8ae94ec9b70c9a907cf (patch) | |
tree | 093caa567bb7e521b532634158d4c026fd48d4c2 /sci-misc | |
parent | sci-misc/gt-itm: EAPI bump 0 -> 6 (diff) | |
download | gentoo-a93f48e744c83be91a03b8ae94ec9b70c9a907cf.tar.gz gentoo-a93f48e744c83be91a03b8ae94ec9b70c9a907cf.tar.bz2 gentoo-a93f48e744c83be91a03b8ae94ec9b70c9a907cf.zip |
sci-misc/gt-itm: Remove EAPI=0 ebuild
Package-Manager: portage-2.3.1
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/gt-itm/gt-itm-19961004-r1.ebuild | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/sci-misc/gt-itm/gt-itm-19961004-r1.ebuild b/sci-misc/gt-itm/gt-itm-19961004-r1.ebuild deleted file mode 100644 index 56b2fb092197..000000000000 --- a/sci-misc/gt-itm/gt-itm-19961004-r1.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -inherit eutils toolchain-funcs - -DESCRIPTION="Routines to generate and analyze graphs using different 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="all-rights-reserved sgb2ns" -SLOT="0" -KEYWORDS="~x86 ~amd64" -RESTRICT="mirror bindist" - -DEPEND="dev-util/sgb" -RDEPEND="${DEPEND}" - -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|' \ - -e 's/\$\(CC\)/& \$\(LDFLAGS\)/g' \ - -i "${S}"/src/Makefile || die - sed -r -e '/^SYS = -DSYSV/d' \ - -e 's|LIBS = -lm -lgb.*|LIBS = -lm -lgb|' \ - -e 's/\$\(CC\)/& \$\(LDFLAGS\)/g' \ - -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 || die - sed -e '162 s/connected $/connected \\/' -i "${S}"/src/eval.c || die - - # fix implicit function declarations - sed -e '/stdio.h/ a\#include <stdlib.h>' \ - -i "${S2}/sgb2comns.c" "${S2}/sgb2hierns.c" || die - sed -e "s/<strings.h>/<string.h>/g" \ - -i "${S2}/sgb2hierns.c" || die - epatch "${FILESDIR}"/${PN}-implicits.patch -} - -src_compile() { - cd "${S}"/src - emake CFLAGS="${CFLAGS} -I../include" LDFLAGS="${LDFLAGS}" \ - CC="$(tc-getCC)" || die - - cd "${S2}" - emake CFLAGS="${CFLAGS} -I\$(IDIR) -L\$(LDIR)" LDFLAGS="${LDFLAGS}" \ - CC="$(tc-getCC)" || die -} - -src_install() { - dobin "${S}"/bin/* || die - dodoc "${S}"/README "${S}"/docs/* || die - cp -pPR "${S}"/sample-graphs "${D}"/usr/share/doc/${PF} || die - - cd "${S2}" - dodoc *.tcl *.gb || die - newdoc README README.sgb2ns || die - -} |