[package] add memleak fixes from #5875
[openwrt/svn-archive/archive.git] / net / miniupnpd / Makefile
1 #
2 # Copyright (C) 2006-2009 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 include $(INCLUDE_DIR)/kernel.mk
10
11 PKG_NAME:=miniupnpd
12 PKG_VERSION:=1.3
13 PKG_RELEASE:=4
14 PKG_MD5SUM:=b5e70e80dcf45b424b8fe3c966bdc613
15
16 PKG_SOURCE_URL:=http://miniupnp.free.fr/files
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/miniupnpd
22 SECTION:=net
23 CATEGORY:=Network
24 DEPENDS:=+iptables
25 TITLE:=Lightweight UPnP daemon
26 URL:=http://miniupnp.free.fr/
27 endef
28
29 define Build/Compile
30 ln -sf $(PKG_BUILD_DIR)/config.h.openwrt $(PKG_BUILD_DIR)/config.h
31 $(MAKE) -C $(PKG_BUILD_DIR) -f Makefile.openwrt \
32 $(TARGET_CONFIGURE_OPTS) \
33 STAGING_DIR="$(STAGING_DIR)" \
34 CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(KERNEL_BUILD_DIR)/iptables-1.4.4/include -DIPTABLES_143" \
35 LIBS="$(STAGING_DIR)/usr/lib/libiptc.so"
36 endef
37
38 define Package/miniupnpd/install
39 $(INSTALL_DIR) $(1)/usr/bin $(1)/etc/init.d $(1)/etc/config $(1)/etc/hotplug.d/firewall
40 $(INSTALL_BIN) $(PKG_BUILD_DIR)/miniupnpd $(1)/usr/bin/miniupnpd
41 $(INSTALL_BIN) ./files/miniupnpd.init $(1)/etc/init.d/miniupnpd
42 $(INSTALL_DATA) ./files/upnpd.config $(1)/etc/config/upnpd
43 $(INSTALL_DATA) ./files/miniupnpd.hotplug $(1)/etc/hotplug.d/firewall/50-miniupnpd
44 endef
45
46 $(eval $(call BuildPackage,miniupnpd))