You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.5 KiB

  1. #
  2. # Copyright (C) 2006-2010 OpenWrt.org
  3. # Copyright (C) 2016 Stijn Segers
  4. #
  5. # This is free software, licensed under the GNU General Public License v2.
  6. # See /LICENSE for more information.
  7. #
  8. include $(TOPDIR)/rules.mk
  9. PKG_NAME:=mii-tool
  10. PKG_VERSION=2016-10-06-$(PKG_SOURCE_VERSION)
  11. PKG_RELEASE:=2
  12. PKG_SOURCE_PROTO:=git
  13. PKG_SOURCE_URL:=git://git.code.sf.net/p/net-tools/code
  14. PKG_SOURCE_VERSION:=115f1af2494ded1fcd21c8419d5e289bc4df380f
  15. PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
  16. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  17. PKG_MIRROR_HASH:=b67157e2912dd210b3e3184b358db6759177a1d8ed6916763e5a629f154f9d7a
  18. PKG_LICENSE:=GPL-2.0
  19. PKG_LICENSE_FILES:=COPYING
  20. PKG_MAINTAINER:=Stijn Segers <borromini.reg@protonmail.com>
  21. include $(INCLUDE_DIR)/package.mk
  22. define Package/mii-tool
  23. SECTION:=net
  24. CATEGORY:=Network
  25. TITLE:=configure media type using MII commands
  26. URL:=http://net-tools.sourceforge.net/
  27. endef
  28. define Package/mii-tool/description
  29. The mii-tool command allows you to set or autodetect the media type
  30. or mii chipset-based ethernet devices. It traditionally had been
  31. distributed in the net-tools package. This is a single distribution
  32. optimized for embedded systems and fully automated cross/-sysroot-builds
  33. endef
  34. define Build/Configure
  35. # Failed configure.sh leaves stub config.h around.
  36. rm -f $(PKG_BUILD_DIR)/config.h
  37. ( cd $(PKG_BUILD_DIR); yes $$$$'\n' | ./configure.sh config.in )
  38. endef
  39. define Package/mii-tool/install
  40. $(INSTALL_DIR) $(1)/usr/sbin
  41. $(INSTALL_BIN) $(PKG_BUILD_DIR)/mii-tool $(1)/usr/sbin/
  42. endef
  43. $(eval $(call BuildPackage,mii-tool))