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.

68 lines
2.0 KiB

  1. #
  2. # Copyright (C) 2006-2014 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=miniupnpd
  9. PKG_VERSION:=2.1
  10. PKG_RELEASE:=1
  11. PKG_SOURCE_URL:=http://miniupnp.free.fr/files
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  13. PKG_HASH:=950894779661197fe093855fda29a728f434b5756eb4fa6cb5f7b9bff7ffe0c1
  14. PKG_MAINTAINER:=Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
  15. PKG_LICENSE:=BSD-3-Clause
  16. include $(INCLUDE_DIR)/package.mk
  17. include $(INCLUDE_DIR)/version.mk
  18. define Package/miniupnpd
  19. SECTION:=net
  20. CATEGORY:=Network
  21. DEPENDS:=+iptables +libip4tc +IPV6:libip6tc +IPV6:ip6tables +libuuid
  22. TITLE:=Lightweight UPnP IGD, NAT-PMP & PCP daemon
  23. SUBMENU:=Firewall
  24. URL:=http://miniupnp.free.fr/
  25. endef
  26. define Package/miniupnpd/conffiles
  27. /etc/config/upnpd
  28. endef
  29. define Build/Prepare
  30. $(call Build/Prepare/Default)
  31. echo "$(VERSION_NUMBER)" | tr '() ' '_' >$(PKG_BUILD_DIR)/os.openwrt
  32. endef
  33. TARGET_CFLAGS += -flto -ffunction-sections -fdata-sections
  34. TARGET_LDFLAGS += -flto -Wl,--gc-sections
  35. MAKE_FLAGS += \
  36. TARGET_OPENWRT=1 TEST=0 LIBS="" \
  37. CC="$(TARGET_CC) -DIPTABLES_143 -lip4tc -luuid \
  38. $(if $(CONFIG_IPV6),-lip6tc)" \
  39. CONFIG_OPTIONS="--portinuse --leasefile --igd2 \
  40. $(if $(CONFIG_IPV6),--ipv6)" \
  41. -f Makefile.linux miniupnpd
  42. define Package/miniupnpd/install
  43. $(INSTALL_DIR) $(1)/usr/sbin
  44. $(INSTALL_DIR) $(1)/etc/init.d
  45. $(INSTALL_DIR) $(1)/etc/config
  46. $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
  47. $(INSTALL_DIR) $(1)/etc/uci-defaults
  48. $(INSTALL_DIR) $(1)/usr/share/miniupnpd
  49. $(INSTALL_BIN) $(PKG_BUILD_DIR)/miniupnpd $(1)/usr/sbin/miniupnpd
  50. $(INSTALL_BIN) ./files/miniupnpd.init $(1)/etc/init.d/miniupnpd
  51. $(INSTALL_CONF) ./files/upnpd.config $(1)/etc/config/upnpd
  52. $(INSTALL_DATA) ./files/miniupnpd.hotplug $(1)/etc/hotplug.d/iface/50-miniupnpd
  53. $(INSTALL_BIN) ./files/miniupnpd.defaults $(1)/etc/uci-defaults/99-miniupnpd
  54. $(INSTALL_DATA) ./files/firewall.include $(1)/usr/share/miniupnpd/firewall.include
  55. endef
  56. $(eval $(call BuildPackage,miniupnpd))