diff options
author | Jeroen Roovers <jer@gentoo.org> | 2014-07-12 13:48:06 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2014-07-12 13:48:06 +0000 |
commit | 94bd30a128ce2e087c1ae2f374378a283d8f62f4 (patch) | |
tree | ddaddd4d4c9e0c604d7e1d5774a963ff7b00ecff /net-analyzer/hping | |
parent | EAPI bump. Clean up patches. (diff) | |
download | gentoo-2-94bd30a128ce2e087c1ae2f374378a283d8f62f4.tar.gz gentoo-2-94bd30a128ce2e087c1ae2f374378a283d8f62f4.tar.bz2 gentoo-2-94bd30a128ce2e087c1ae2f374378a283d8f62f4.zip |
Remove die() messages.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-analyzer/hping')
-rw-r--r-- | net-analyzer/hping/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/hping/hping-3_pre20051105-r5.ebuild | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/net-analyzer/hping/ChangeLog b/net-analyzer/hping/ChangeLog index c536b568cb3e..278acc534c5f 100644 --- a/net-analyzer/hping/ChangeLog +++ b/net-analyzer/hping/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/hping -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hping/ChangeLog,v 1.63 2013/11/12 00:16:46 jer Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hping/ChangeLog,v 1.64 2014/07/12 13:48:06 jer Exp $ + + 12 Jul 2014; Jeroen Roovers <jer@gentoo.org> hping-3_pre20051105-r5.ebuild: + Remove die() messages. 12 Nov 2013; Jeroen Roovers <jer@gentoo.org> hping-3_pre20051105-r5.ebuild: Use usex. diff --git a/net-analyzer/hping/hping-3_pre20051105-r5.ebuild b/net-analyzer/hping/hping-3_pre20051105-r5.ebuild index 93e983ef8aad..288c57aedf68 100644 --- a/net-analyzer/hping/hping-3_pre20051105-r5.ebuild +++ b/net-analyzer/hping/hping-3_pre20051105-r5.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hping/hping-3_pre20051105-r5.ebuild,v 1.2 2013/11/12 00:16:46 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hping/hping-3_pre20051105-r5.ebuild,v 1.3 2014/07/12 13:48:06 jer Exp $ EAPI=5 @@ -39,20 +39,20 @@ src_prepare() { -e '/^RANLIB=/d' \ -e 's:/usr/local/lib:/usr/$(LIBDIR):g' \ -e 's:-O2:$(CFLAGS):' \ - || die "sed Makefile.in failed" + || die # Change name from hping2 to hping3 sed -i docs/hping3.8 \ -e 's|HPING2|HPING|g' \ -e 's|hping2|hping|g' \ - || die "sed hping3.8 failed" + || die } src_configure() { tc-export CC # Not an autotools type configure: - sh configure $(usex tcl '' --no-tcl) || die "configure failed" + sh configure $(usex tcl '' --no-tcl) || die } src_compile() { |