blob: 60ff0fb2da50c7f35f2ae1346e4542e59ad828d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
#
# Copyright (C) 2006-2010 OpenWrt.org
# Copyright (C) 2016 Stijn Segers
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=net-tools
PKG_VERSION:=2.10
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=https://sourceforge.net/projects/net-tools/files/
PKG_HASH:=b262435a5241e89bfa51c3cabd5133753952f7a7b7b93f32e08cb9d96f580d69
PKG_MAINTAINER:=Stijn Segers <borromini.reg@protonmail.com>
PKG_LICENSE:=GPL-2.0-or-later
PKG_LICENSE_FILES:=COPYING
PKG_CPE_ID:=cpe:/a:net-tools_project:net-tools
include $(INCLUDE_DIR)/package.mk
define Package/mii-tool
SECTION:=net
CATEGORY:=Network
TITLE:=configure media type using MII commands
URL:=http://net-tools.sourceforge.net/
endef
define Package/mii-tool/description
The mii-tool command allows you to set or autodetect the media type
or mii chipset-based ethernet devices. It traditionally had been
distributed in the net-tools package. This is a single distribution
optimized for embedded systems and fully automated cross/-sysroot-builds
endef
define Package/net-tools-route
SECTION:=net
CATEGORY:=Network
TITLE:=net-tools - route utility
URL:=http://net-tools.sourceforge.net/
PROVIDES:=route
ALTERNATIVES:=300:/sbin/route:/usr/libexec/net-tools-route
endef
define Package/net-tools-route/description
Replace busybox version of the route command with the full net-tools
version. This is normally not needed as busybox is smaller and provides
sufficient functionality, but some users may want or need the full
functionality of the net-tools variant (e.g. AF_X25).
endef
define Package/net-tools-netstat
SECTION:=net
CATEGORY:=Network
TITLE:=net-tools - netstat utility
URL:=http://net-tools.sourceforge.net/
PROVIDES:=route
ALTERNATIVES:=300:/bin/netstat:/usr/libexec/net-tools-netstat
endef
define Package/net-tools-netstat/description
Replace busybox version of the netstat command with the full net-tools
version. This is normally not needed as busybox is smaller and provides
sufficient functionality, but some users may want or need the full
functionality of the net-tools variant.
endef
define Build/Configure
# Failed configure.sh leaves stub config.h around.
rm -f $(PKG_BUILD_DIR)/config.h
( cd $(PKG_BUILD_DIR); yes $$$$'\n' | ./configure.sh config.in )
endef
define Package/mii-tool/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/mii-tool $(1)/usr/sbin/
endef
define Package/net-tools-route/install
$(INSTALL_DIR) $(1)/usr/libexec
$(INSTALL_BIN) $(PKG_BUILD_DIR)/route $(1)/usr/libexec/net-tools-route
endef
define Package/net-tools-netstat/install
$(INSTALL_DIR) $(1)/usr/libexec
$(INSTALL_BIN) $(PKG_BUILD_DIR)/netstat $(1)/usr/libexec/net-tools-netstat
endef
$(eval $(call BuildPackage,mii-tool))
$(eval $(call BuildPackage,net-tools-route))
$(eval $(call BuildPackage,net-tools-netstat))
|