From 80873b2d9712a76f4fd1e9e7d4cb94eed08e8858 Mon Sep 17 00:00:00 2001 From: Marcelo Góes Date: Sat, 16 Apr 2005 00:00:40 +0000 Subject: bug 88816 (Portage version: 2.0.51.19) --- net-analyzer/cheops-ng/ChangeLog | 9 ++- net-analyzer/cheops-ng/Manifest | 2 + net-analyzer/cheops-ng/cheops-ng-0.1.13.ebuild | 66 ---------------------- net-analyzer/cheops-ng/cheops-ng-0.2.0.ebuild | 46 +++++++++++++++ .../cheops-ng/files/digest-cheops-ng-0.1.13 | 1 - .../cheops-ng/files/digest-cheops-ng-0.2.0 | 1 + 6 files changed, 57 insertions(+), 68 deletions(-) delete mode 100644 net-analyzer/cheops-ng/cheops-ng-0.1.13.ebuild create mode 100644 net-analyzer/cheops-ng/cheops-ng-0.2.0.ebuild delete mode 100644 net-analyzer/cheops-ng/files/digest-cheops-ng-0.1.13 create mode 100644 net-analyzer/cheops-ng/files/digest-cheops-ng-0.2.0 (limited to 'net-analyzer') diff --git a/net-analyzer/cheops-ng/ChangeLog b/net-analyzer/cheops-ng/ChangeLog index c7754e295e57..9ff67b9271b9 100644 --- a/net-analyzer/cheops-ng/ChangeLog +++ b/net-analyzer/cheops-ng/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-analyzer/cheops-ng # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cheops-ng/ChangeLog,v 1.3 2005/04/02 22:06:01 vanquirius Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cheops-ng/ChangeLog,v 1.4 2005/04/16 00:00:40 vanquirius Exp $ + +*cheops-ng-0.2.0 (15 Apr 2005) + + 15 Apr 2005; Marcelo Goes -cheops-ng-0.1.13.ebuild, + +cheops-ng-0.2.0.ebuild: + Version bump, fixes bug 88816. Thanks to Michael Zanetta . + Keeping things tidy, too. *cheops-ng-0.1.13-r1 (02 Apr 2005) diff --git a/net-analyzer/cheops-ng/Manifest b/net-analyzer/cheops-ng/Manifest index 048de95c995a..6d7af8e67e63 100644 --- a/net-analyzer/cheops-ng/Manifest +++ b/net-analyzer/cheops-ng/Manifest @@ -1,7 +1,9 @@ +MD5 202cc21fbdb0a51da9e06f56b71ed7b0 cheops-ng-0.2.0.ebuild 1349 MD5 02dc61cfada1a07f16394594e574cf4f cheops-ng-0.1.13.ebuild 1853 MD5 03e0ed0f3935ac7ae9753c595f0e81b3 ChangeLog 1378 MD5 5731c4fdc13f68a2dccaacfbc4fbc611 metadata.xml 257 MD5 bed2c2451bd06d5a7538197ff9944a6b cheops-ng-0.1.13-r1.ebuild 1792 +MD5 33b404ed127738fbd865480756961af4 files/digest-cheops-ng-0.2.0 64 MD5 1bd20cac4d709f4fd39d7c308daad7ab files/cheops-ng-0.1.13-printf.diff 2328 MD5 76b3ed702ddc4890c7035d83a27aa42b files/adns-gcc34.patch 433 MD5 777b8b1d7bdb5928dd24e00509312c01 files/digest-cheops-ng-0.1.13-r1 65 diff --git a/net-analyzer/cheops-ng/cheops-ng-0.1.13.ebuild b/net-analyzer/cheops-ng/cheops-ng-0.1.13.ebuild deleted file mode 100644 index c9c3bd2f41f8..000000000000 --- a/net-analyzer/cheops-ng/cheops-ng-0.1.13.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cheops-ng/cheops-ng-0.1.13.ebuild,v 1.2 2005/03/31 22:12:17 vanquirius Exp $ - -inherit eutils - -DESCRIPTION="Cheops-ng is a Network management tool for mapping and monitoring your network" -HOMEPAGE="http://cheops-ng.sourceforge.net/" -SRC_URI="mirror://sourceforge/cheops-ng/${P}.tgz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" -IUSE="debug" -DEPEND=">=net-analyzer/nmap-3.27-r1 - =x11-libs/gtk+-1.2* - >=dev-libs/libxml-1.8.17-r2 - >=gnome-base/gnome-libs-1.4.2 - >=media-libs/imlib-1.9.14-r1 - >=dev-libs/glib-1.2.10-r5 - media-libs/libpng" - -src_unpack() { - unpack ${A} - cd ${S}/adns-1.0 - epatch ${FILESDIR}/adns-gcc34.patch -} - -src_compile() { - # disable/enable debug - if use debug; then - sed -i -e 's/^\/\/#define DEBUG/#define DEBUG/g' ./*.c || die "sed failed" - sed -i -e 's/^\/\/#define DEBUG/#define DEBUG/g' ./*.h || die "sed failed" - - else - # we need to disable the noisy nmap debug and any other - sed -i -e 's/^#define DEBUG/\/\/#define DEBUG/g' ./*.c || die "sed failed" - sed -i -e 's/^#define DEBUG/\/\/#define DEBUG/g' ./*.h || die "sed failed" - fi - - # First we need to configure adns - cd adns-1.0 - econf || die - cd .. - # Now we configure cheops-ng - econf || die - - # Fix for the gpl.c file that adds \ at the end of COPYING puts the result - # in toto and change the reference to the file in Makefile. - sed \ - -e 's/$/ \\/g' \ - -e 's/"/""/g' \ - COPYING > toto || die "sed failed" - sed -i \ - -e '146s/\\""/\\"\\\\"/g' \ - -e 's/COPYING/toto/g' \ - Makefile || die "sed failed" - # gcc-3.4 fixes - sed -i -e 's/printf(__FUNCTION__/printf(__FUNCTION__\,/g' ./*.c \ - || die "sed failed" - emake || die -} - -src_install() { - einstall || die - dodoc AUTHORS COPYING README NEWS ReleaseNotes doc/*.txt -} diff --git a/net-analyzer/cheops-ng/cheops-ng-0.2.0.ebuild b/net-analyzer/cheops-ng/cheops-ng-0.2.0.ebuild new file mode 100644 index 000000000000..db3979185baf --- /dev/null +++ b/net-analyzer/cheops-ng/cheops-ng-0.2.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cheops-ng/cheops-ng-0.2.0.ebuild,v 1.1 2005/04/16 00:00:40 vanquirius Exp $ + +inherit eutils + +DESCRIPTION="Cheops-ng is a Network management tool for mapping and monitoring your network" +HOMEPAGE="http://cheops-ng.sourceforge.net/" +SRC_URI="mirror://sourceforge/cheops-ng/${P}.tgz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="debug" +DEPEND=">=net-analyzer/nmap-3.27-r1 + =x11-libs/gtk+-1.2* + >=dev-libs/libxml-1.8.17-r2 + >=gnome-base/gnome-libs-1.4.2 + >=media-libs/imlib-1.9.14-r1 + >=dev-libs/glib-1.2.10-r5 + media-libs/libpng" + +src_compile() { + # disable/enable debug + if use debug; then + sed -i -e 's/^\/\/#define DEBUG/#define DEBUG/g' ./*.c || die "sed failed" + sed -i -e 's/^\/\/#define DEBUG/#define DEBUG/g' ./*.h || die "sed failed" + + else + # we need to disable the noisy nmap debug and any other + sed -i -e 's/^#define DEBUG/\/\/#define DEBUG/g' ./*.c || die "sed failed" + sed -i -e 's/^#define DEBUG/\/\/#define DEBUG/g' ./*.h || die "sed failed" + fi + + # First we need to configure adns + cd adns-1.0 + econf || die + cd .. + # Now we configure cheops-ng + econf || die + emake || die +} + +src_install() { + einstall || die + dodoc AUTHORS COPYING README NEWS ReleaseNotes doc/*.txt +} diff --git a/net-analyzer/cheops-ng/files/digest-cheops-ng-0.1.13 b/net-analyzer/cheops-ng/files/digest-cheops-ng-0.1.13 deleted file mode 100644 index e89972fd22a0..000000000000 --- a/net-analyzer/cheops-ng/files/digest-cheops-ng-0.1.13 +++ /dev/null @@ -1 +0,0 @@ -MD5 31686c9c3abeddd90f113df4b7c9a400 cheops-ng-0.1.13.tgz 694326 diff --git a/net-analyzer/cheops-ng/files/digest-cheops-ng-0.2.0 b/net-analyzer/cheops-ng/files/digest-cheops-ng-0.2.0 new file mode 100644 index 000000000000..f2118f66e534 --- /dev/null +++ b/net-analyzer/cheops-ng/files/digest-cheops-ng-0.2.0 @@ -0,0 +1 @@ +MD5 951ab0f3a96dbe5735803db9d549cc94 cheops-ng-0.2.0.tgz 727657 -- cgit v1.2.3-65-gdbad