Portage is a package management system used by Gentoo Linux
# ChangeLog for net-analyzer/cnet
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cnet/ChangeLog,v 1.15 2007/06/02 22:42:58 jokey Exp $
02 Jun 2007; Markus Ullmann
-files/cnet-2.0.5-gentoo.patch, -files/cnet-2.0.9-gentoo.patch,
-files/cnet-2.0.9-parser.patch, -cnet-2.0.9.ebuild:
cleanup and drop old
07 Apr 2007; Mike Frysinger
cnet-2.0.10.ebuild:
Remove DOCDESTTREE hack and use proper "docinto".
20 Mar 2007; Raúl Porcel
x86 stable
20 Feb 2007; Markus Ullmann
Redigest for Manifest2
24 Nov 2006; Cedric Krier
+files/cnet-2.0.9-parser.patch, cnet-2.0.9.ebuild:
patch for bug #153245
*cnet-2.0.10 (21 Apr 2006)
21 Apr 2006; Marcelo Goes
+files/cnet-2.0.10-gentoo.patch, -cnet-2.0.5.ebuild, +cnet-2.0.10.ebuild:
2.0.10 version bump for bug 130634, thanks to Kesara Rathnayake
31 Jan 2005; Aaron Walker
Marked stable on x86.
*cnet-2.0.9 (21 Nov 2004)
21 Nov 2004; Eldad Zack
+cnet-2.0.9.ebuild:
Version bump. Thanks to Surakshan Mendis
#66275.
21 Nov 2004; Eldad Zack
This package has a hard dependency on libelf and will break against elfutils.
closes #67375.
11 Jul 2004; Eldad Zack
Updated metadata, marked x86 stable.
27 Apr 2004; Aron Griffis
Add inherit eutils
12 Feb 2004; Don Seiler
Adding OR DEPEND on elfutils/libelf, fixed Bug #37152
08 Dec 2003; Don Seiler
Fix for Bug 35160: hardwired CFLAGS. Thanks to Eldad Zack
08 Dec 2003; Don Seiler
Fix for Bug 35109: Install docs. Thanks to viktor(at)neotek(dot)hu
*cnet-2.0.5 (01 Aug 2003)
01 Aug 2003; Don Seiler
files/cnet-2.0.5-gentoo.patch:
Initial import. Thanks to Mike Gardiner
original ebuild.
AUX cnet-2.0.10-gentoo.patch 3235 RMD160 024ded426702c8ec066d71b9a1435c79c03a1084 SHA1 d6dc89e55a871fb8e9b276b48d2579bc165d02ef SHA256 774d5666c8ce7901d37d48d3dbb1effcbffddaf669a6a64d3e47b146f5cbfada
DIST cnet-2.0.10.tgz 1158887 RMD160 614e4a71cbc90bee9c581e8b14389e12c5ff02d3 SHA1 eab8bd36203c956936c80d71a81e36a32a8acc89 SHA256 7b1e720179b7316d97b8b947155b261dda7ddfd01ff18fb04139c33f4a35bfcb
EBUILD cnet-2.0.10.ebuild 1036 RMD160 ec00d7635dd246f7f3f485c801aba1ddff0b30ae SHA1 6061905574e496a454917aff55a2fa3c8671c970 SHA256 570874af3c47b912aa6e116fc64461882812d3416c2ce7d26c2b925c7dfaf178
MISC ChangeLog 2370 RMD160 512f06870a350fd29aa44a2fc40801e30c58b646 SHA1 a574f0a6a2e64c3fa5f216d420fb978a4129d2e2 SHA256 d31d71988d66d069cdf3b5fc8cb583b46b2caf48c6a0ea6a6becd8f8a4e4c11b
MISC metadata.xml 218 RMD160 a812d9696192b58b1390b15f36a55ac9cf235dff SHA1 7055e31d03348a70284f86725fc06f7a77231024 SHA256 d3470d760c9c0bba1b56da4d676f0c3b97d523c57cb050c7baea8de94eed3ddd
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cnet/cnet-2.0.10.ebuild,v 1.3 2007/04/07 04:21:08 vapier Exp $
inherit eutils
DESCRIPTION="Network simulation tool"
SRC_URI="http://www.csse.uwa.edu.au/cnet/${P}.tgz"
HOMEPAGE="http://www.csse.uwa.edu.au/cnet"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=dev-lang/tk-8.3.4
dev-libs/elfutils"
#RDEPEND=""
# unpacking the source
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-2.0.10-gentoo.patch
sed -i.orig -e "s/^CFLAGS.*/CFLAGS=${CFLAGS}/" "${S}"/src/Makefile.linux
}
src_install() {
# these directories aren't created during the make install
# process, so we'll need to make them beforehand, or else
# we'll have nowhere to put the files
mkdir -p "${D}"/usr/{bin,lib,share}
mkdir -p "${D}"/usr/share/man/man1
# install with make now
make PREFIX="${D}"/usr install || die
#install examples
docinto EXAMPLES
dodoc EXAMPLES/*
}