treewide: fix replace nbd@openwrt.org with nbd@nbd.name
[openwrt.git] / package / network / utils / iperf / Makefile
1 #
2 # Copyright (C) 2007-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=iperf
11 PKG_VERSION:=2.0.5
12 PKG_RELEASE:=1
13
14 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/$(PKG_NAME)
17 PKG_MD5SUM:=44b5536b67719f4250faed632a3cd016
18
19 PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
20 PKG_LICENSE:=BSD-3-Clause
21
22 PKG_BUILD_PARALLEL:=1
23
24 include $(INCLUDE_DIR)/uclibc++.mk
25 include $(INCLUDE_DIR)/package.mk
26
27 define Package/iperf/Default
28   SECTION:=net
29   CATEGORY:=Network
30   DEPENDS:= $(CXX_DEPENDS)
31   TITLE:=Internet Protocol bandwidth measuring tool
32   URL:=http://sourceforge.net/projects/iperf/
33 endef
34
35 define Package/iperf/Default/description
36  Iperf is a modern alternative for measuring TCP and UDP bandwidth
37  performance, allowing the tuning of various parameters and
38  characteristics.
39 endef
40
41 define Package/iperf
42 $(call Package/iperf/Default)
43   TITLE+= (with single thread support)
44   VARIANT:=single
45 endef
46
47 define Package/iperf/description
48 $(call Package/iperf/Default/description)
49  This package is built with single thread support.
50 endef
51
52 define Package/iperf-mt
53 $(call Package/iperf/Default)
54   DEPENDS+= +libpthread
55   TITLE+= (with multithread support)
56   VARIANT:=mt
57 endef
58
59 define Package/iperf-mt/description
60 $(call Package/iperf/Default/description)
61  This package is built with multithread support.
62 endef
63
64 CONFIGURE_ARGS += --disable-multicast
65 CONFIGURE_VARS += ac_cv_func_malloc_0_nonnull=yes
66
67 ifeq ($(BUILD_VARIANT),single)
68   CONFIGURE_ARGS += --disable-threads
69 else
70   CONFIGURE_ARGS += --enable-threads=posix
71   CONFIGURE_VARS += ac_cv_func_pthread_cancel=no
72 endif
73
74 CONFIGURE_VARS += CXXFLAGS="$$$$CXXFLAGS -fno-rtti"
75
76 ifeq ($(BUILD_VARIANT),mt)
77   CONFIGURE_VARS += LIBS="-lpthread"
78 endif
79
80 define Package/iperf/install
81         $(INSTALL_DIR) $(1)/usr/bin
82         $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/iperf $(1)/usr/bin/iperf
83 endef
84 Package/iperf-mt/install = $(Package/iperf/install)
85
86 $(eval $(call BuildPackage,iperf))
87 $(eval $(call BuildPackage,iperf-mt))