summaryrefslogtreecommitdiffstats
path: root/rules/netperf.make
diff options
context:
space:
mode:
Diffstat (limited to 'rules/netperf.make')
-rw-r--r--rules/netperf.make74
1 files changed, 0 insertions, 74 deletions
diff --git a/rules/netperf.make b/rules/netperf.make
deleted file mode 100644
index dc9042445..000000000
--- a/rules/netperf.make
+++ /dev/null
@@ -1,74 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2016 by Clemens Gruber <clemens.gruber@pqgruber.com>
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-PACKAGES-$(PTXCONF_NETPERF) += netperf
-
-#
-# Paths and names
-#
-NETPERF_VERSION := 2.7.0
-NETPERF_MD5 := e0d45b5bca1eee2aef0155de82366202
-NETPERF := netperf-$(NETPERF_VERSION)
-NETPERF_SUFFIX := tar.gz
-NETPERF_URL := \
- https://github.com/HewlettPackard/netperf/archive/$(NETPERF).$(NETPERF_SUFFIX)
-NETPERF_SOURCE := $(SRCDIR)/$(NETPERF).$(NETPERF_SUFFIX)
-NETPERF_DIR := $(BUILDDIR)/$(NETPERF)
-NETPERF_LICENSE := HP
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-#
-# autoconf
-#
-NETPERF_CONF_TOOL := autoconf
-NETPERF_CONF_OPT := \
- $(CROSS_AUTOCONF_USR) \
- $(GLOBAL_LARGE_FILE_OPTION) \
- --disable-histogram \
- --disable-dirty \
- --enable-demo \
- --disable-unixdomain \
- --disable-dlpi \
- --disable-dccp \
- --enable-omni \
- --disable-xti \
- --disable-sdp \
- --disable-exs \
- --disable-sctp \
- --disable-intervals \
- --disable-spin \
- --enable-burst \
- --enable-cpuutil=procstat
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/netperf.targetinstall:
- @$(call targetinfo)
-
- @$(call install_init, netperf)
- @$(call install_fixup, netperf, PRIORITY, optional)
- @$(call install_fixup, netperf, SECTION, base)
- @$(call install_fixup, netperf, AUTHOR, "Clemens Gruber <clemens.gruber@pqgruber.com>")
- @$(call install_fixup, netperf, DESCRIPTION, missing)
-
- @$(call install_alternative, netperf, 0, 0, 0755, /usr/bin/netperf)
- @$(call install_alternative, netperf, 0, 0, 0755, /usr/bin/netserver)
-
- @$(call install_finish, netperf)
-
- @$(call touch)
-
-# vim: syntax=make