diff options
author | Jeroen Roovers <jer@gentoo.org> | 2014-07-12 13:11:35 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2014-07-12 13:11:35 +0000 |
commit | e3edf894dd4f2cf303e71e07c786b315737912f7 (patch) | |
tree | 139bdd4e6813d5190653cbcb6b8e436d36d320f2 /net-analyzer/fragroute/fragroute-1.2.6.ebuild | |
parent | Version bump (diff) | |
download | gentoo-2-e3edf894dd4f2cf303e71e07c786b315737912f7.tar.gz gentoo-2-e3edf894dd4f2cf303e71e07c786b315737912f7.tar.bz2 gentoo-2-e3edf894dd4f2cf303e71e07c786b315737912f7.zip |
Remove die() messages, unused IUSE.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-analyzer/fragroute/fragroute-1.2.6.ebuild')
-rw-r--r-- | net-analyzer/fragroute/fragroute-1.2.6.ebuild | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/net-analyzer/fragroute/fragroute-1.2.6.ebuild b/net-analyzer/fragroute/fragroute-1.2.6.ebuild index 545e27adebd8..993f2d01384e 100644 --- a/net-analyzer/fragroute/fragroute-1.2.6.ebuild +++ b/net-analyzer/fragroute/fragroute-1.2.6.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fragroute/fragroute-1.2.6.ebuild,v 1.2 2014/06/14 09:48:16 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fragroute/fragroute-1.2.6.ebuild,v 1.3 2014/07/12 13:11:35 jer Exp $ -EAPI="5" +EAPI=5 AUTOTOOLS_AUTORECONF=1 AUTOTOOLS_IN_SOURCE_BUILD=1 @@ -17,7 +17,6 @@ SRC_URI="http://fragroute-ipv6.googlecode.com/files/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 x86" -IUSE="" RDEPEND=" dev-libs/libevent @@ -33,9 +32,9 @@ DOCS=( INSTALL README TODO ) src_prepare() { # Remove broken and old files, autotools will regen needed files - rm *.m4 acconfig.h missing Makefile.in || die 'removing of old stuff failed' + rm *.m4 acconfig.h missing Makefile.in || die # Add missing includes - sed -i -e "/#define IPUTIL_H/a#include <stdio.h>\n#include <stdint.h>" iputil.h || die 'sed on iputil.h failed' + sed -i -e "/#define IPUTIL_H/a#include <stdio.h>\n#include <stdint.h>" iputil.h || die autotools-utils_src_prepare } |