EAPI=5
-AUTOTOOLS_AUTORECONF=1
-inherit autotools-utils
-
DESCRIPTION="A tool to measure bandwidth and RTT between two hosts using ICMP"
HOMEPAGE="http://bwping.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz"
KEYWORDS="amd64 ~sparc x86 ~x86-fbsd"
IUSE="ipv6"
-#PATCHES=(
-# "${FILESDIR}/${P}-buildsystem-configurable-ipv6.patch" # bug 454256
-#)
-
src_configure() {
- local myeconfargs=(
- $(use_enable ipv6)
- )
- autotools-utils_src_configure
+ econf $(use_enable ipv6)
}
--- /dev/null
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="A tool to measure bandwidth and RTT between two hosts using ICMP"
+HOMEPAGE="http://bwping.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~sparc ~x86 ~x86-fbsd"
+IUSE="ipv6"
+
+src_configure() {
+ econf $(use_enable ipv6)
+}
+++ /dev/null
-Index: bwping-1.7/configure.in
-===================================================================
---- bwping-1.7.orig/configure.in
-+++ bwping-1.7/configure.in
-@@ -32,9 +32,30 @@ AC_CHECK_FUNC(getaddrinfo)
- if test $ac_cv_func_getaddrinfo = no; then
- AC_SEARCH_LIBS(getaddrinfo, [nsl socket], [], [ echo "getaddrinfo() is required for build"; exit -1 ])
- fi
--AC_MSG_CHECKING(for IPv6 support)
--AC_CACHE_VAL(ac_cv_ipv6,
-- AC_TRY_RUN([
-+
-+AC_ARG_ENABLE(ipv6,
-+ AC_HELP_STRING([--disable-ipv6],[disable IPv6 support]),
-+ [case "${enable_ipv6}" in
-+ no)
-+ ipv6=no
-+ ;;
-+ yes)
-+ ipv6=yes
-+ ;;
-+ *)
-+ AC_MSG_ERROR([Invalid --enable-ipv6 argument '$enable_ipv6'])
-+ ;;
-+ esac
-+ ], [
-+ dnl If nothing is specified, assume auto-detection
-+ ipv6=yes
-+ ]
-+)
-+
-+if test $ipv6 = yes; then
-+ AC_MSG_CHECKING(for IPv6 support)
-+ AC_CACHE_VAL(ac_cv_ipv6,
-+ AC_TRY_LINK([
- #include <sys/types.h>
- #include <sys/socket.h>
- #include <netinet/in.h>
-@@ -54,9 +75,12 @@ main()
- ac_cv_ipv6=yes,
- ac_cv_ipv6=no,
- ac_cv_ipv6=no))
--AC_MSG_RESULT($ac_cv_ipv6)
--if test $ac_cv_ipv6 = yes ; then
-- AC_DEFINE(IPV6,, "check if system supports IPV6")
-+ if test $ac_cv_ipv6 = yes ; then
-+ AC_DEFINE(IPV6,, "check if system supports IPV6")
-+ else
-+ AC_MSG_ERROR([IPv6 support was request, but not found])
-+ fi
-+ AC_MSG_RESULT($ac_cv_ipv6)
- fi
--AM_CONDITIONAL([BUILDIPV6], [ test $ac_cv_ipv6 = yes ])
-+AM_CONDITIONAL([BUILDIPV6], [ test $ipv6 = yes ])
- AC_OUTPUT(Makefile)