diff options
author | Christian Heim <phreak@gentoo.org> | 2006-09-16 13:39:10 +0000 |
---|---|---|
committer | Christian Heim <phreak@gentoo.org> | 2006-09-16 13:39:10 +0000 |
commit | b987202381c7394fd254150700c74792d79e1a28 (patch) | |
tree | 983e9ee73c25d50428cb08e0785f675a8eab7b34 /net-analyzer/nload | |
parent | ppc stable (diff) | |
download | gentoo-2-b987202381c7394fd254150700c74792d79e1a28.tar.gz gentoo-2-b987202381c7394fd254150700c74792d79e1a28.tar.bz2 gentoo-2-b987202381c7394fd254150700c74792d79e1a28.zip |
Revision bump to prevent net-analyzer/nload from installing a prestripped binary (removing -s from LDFLAGS in configure.in). This fixes #143857 (commiting on behalf of Daniel Black).
(Portage version: 2.1.2_pre1)
Diffstat (limited to 'net-analyzer/nload')
-rw-r--r-- | net-analyzer/nload/ChangeLog | 12 | ||||
-rw-r--r-- | net-analyzer/nload/files/digest-nload-0.6.0 | 2 | ||||
-rw-r--r-- | net-analyzer/nload/files/digest-nload-0.6.0-r1 | 3 | ||||
-rw-r--r-- | net-analyzer/nload/files/nload-0.6.0-prevent-stripping.patch | 15 | ||||
-rw-r--r-- | net-analyzer/nload/nload-0.6.0-r1.ebuild | 30 |
5 files changed, 60 insertions, 2 deletions
diff --git a/net-analyzer/nload/ChangeLog b/net-analyzer/nload/ChangeLog index 8f2ce7b2b70d..e488af8a1a71 100644 --- a/net-analyzer/nload/ChangeLog +++ b/net-analyzer/nload/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for net-analyzer/nload -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nload/ChangeLog,v 1.18 2005/05/31 23:21:14 cryos Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nload/ChangeLog,v 1.19 2006/09/16 13:39:10 phreak Exp $ + +*nload-0.6.0-r1 (16 Sep 2006) + + 16 Sep 2006; Christian Heim <phreak@gentoo.org> + +files/nload-0.6.0-prevent-stripping.patch, +nload-0.6.0-r1.ebuild: + Revision bump to prevent net-analyzer/nload from installing a prestripped + binary (removing -s from LDFLAGS in configure.in). This fixes #143857 + (commiting on behalf of Daniel Black). 31 May 2005; Marcus D. Hanwell <marcus@gentoo.org> nload-0.6.0.ebuild: Stable on amd64. diff --git a/net-analyzer/nload/files/digest-nload-0.6.0 b/net-analyzer/nload/files/digest-nload-0.6.0 index c1671d0194f4..821d6ef86e0c 100644 --- a/net-analyzer/nload/files/digest-nload-0.6.0 +++ b/net-analyzer/nload/files/digest-nload-0.6.0 @@ -1 +1,3 @@ MD5 a8859e49176bb50826b52b8345b117d3 nload-0.6.0.tar.gz 121136 +RMD160 d7bcd89d32b90ce4e5676c6630e478cd3e73a9d7 nload-0.6.0.tar.gz 121136 +SHA256 546c7934a1e97aed34982eca6a4f17d33956479f76de9151371fa58eb24766c9 nload-0.6.0.tar.gz 121136 diff --git a/net-analyzer/nload/files/digest-nload-0.6.0-r1 b/net-analyzer/nload/files/digest-nload-0.6.0-r1 new file mode 100644 index 000000000000..821d6ef86e0c --- /dev/null +++ b/net-analyzer/nload/files/digest-nload-0.6.0-r1 @@ -0,0 +1,3 @@ +MD5 a8859e49176bb50826b52b8345b117d3 nload-0.6.0.tar.gz 121136 +RMD160 d7bcd89d32b90ce4e5676c6630e478cd3e73a9d7 nload-0.6.0.tar.gz 121136 +SHA256 546c7934a1e97aed34982eca6a4f17d33956479f76de9151371fa58eb24766c9 nload-0.6.0.tar.gz 121136 diff --git a/net-analyzer/nload/files/nload-0.6.0-prevent-stripping.patch b/net-analyzer/nload/files/nload-0.6.0-prevent-stripping.patch new file mode 100644 index 000000000000..a856f8ece058 --- /dev/null +++ b/net-analyzer/nload/files/nload-0.6.0-prevent-stripping.patch @@ -0,0 +1,15 @@ +Index: nload-0.6.0/configure.in +=================================================================== +--- nload-0.6.0.orig/configure.in ++++ nload-0.6.0/configure.in +@@ -76,8 +76,8 @@ fi + dnl Adds extra arguments to configure script. + AC_ARG_ENABLE(debug, + AC_HELP_STRING([--enable-debug], [do not strip debugging symbols (default no)]), +- test "$enableval" = "no" && LDFLAGS="$LDFLAGS -s", +- LDFLAGS="$LDFLAGS -s") ++ test "$enableval" = "no" && LDFLAGS="$LDFLAGS", ++ LDFLAGS="$LDFLAGS") + + dnl Checks for library functions. + AC_TYPE_SIGNAL diff --git a/net-analyzer/nload/nload-0.6.0-r1.ebuild b/net-analyzer/nload/nload-0.6.0-r1.ebuild new file mode 100644 index 000000000000..47a2ac122cb6 --- /dev/null +++ b/net-analyzer/nload/nload-0.6.0-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nload/nload-0.6.0-r1.ebuild,v 1.1 2006/09/16 13:39:10 phreak Exp $ + +inherit eutils autotools + +DESCRIPTION="console application which monitors network traffic and bandwidth usage in real time" +SRC_URI="mirror://sourceforge/nload/${P}.tar.gz" +HOMEPAGE="http://roland-riegel.de/nload/index_en.html" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +DEPEND=">=sys-libs/ncurses-5.2" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-prevent-stripping.patch + eautoreconf +} + +src_install () { + #make DESTDIR=${D} install + einstall || die + dodoc README INSTALL ChangeLog AUTHORS +} + |