branch Attitude Adjustment packages
[12.09/packages.git] / net / linuxigd / Makefile
1
2 # Copyright (C) 2006-2012 OpenWrt.org
3 # Copyright (C) 2006 loswillios
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=linuxigd
12 PKG_VERSION:=1.0
13 PKG_RELEASE:=3
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/linux-igd
17 PKG_MD5SUM:=929f5c4878c91d534613b7c7070215d9
18
19 PKG_BUILD_DEPENDS:=iptables libupnp
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/linuxigd
24   SECTION:=net
25   CATEGORY:=Network
26   TITLE:=UPnP daemon
27   SUBMENU:=Firewall
28   DEPENDS:=+libip4tc +libupnp +libpthread @BROKEN
29   URL:=http://linux-igd.sourceforge.net/
30 endef
31
32 define Package/linuxigd/description
33         It implements the UPnP Internet Gateway Device specification (IGD)
34         and allows UPnP aware clients, such as MSN Messenger, Azureus or
35         Miranda to work properly from behind a NAT firewall.
36
37         Please edit /etc/upnpd.conf before using upnpd!
38 endef
39
40 define Build/Compile
41         $(MAKE) -C $(PKG_BUILD_DIR)  \
42                 $(TARGET_CONFIGURE_OPTS) \
43                 CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -DIPTABLES_143 -Wl,-rpath-link=$(STAGING_DIR)/usr/lib" \
44                 BINDIR="/usr/sbin" \
45                 MANDIR="/usr/man" \
46                 HAVE_LIBIPTC=1 \
47                 LIBIPTC_PREFIX="$(STAGING_DIR)/usr" \
48                 LIBUPNP_PREFIX="$(STAGING_DIR)/usr" \
49                 LIBS="-lpthread -lupnp -lixml -lthreadutil -lip4tc -L../lib" \
50                 all
51 endef
52
53 define Package/linuxigd/conffiles
54 /etc/upnpd.conf
55 endef
56
57 define Package/linuxigd/install
58         $(INSTALL_DIR) $(1)/usr/sbin
59         $(INSTALL_BIN) $(PKG_BUILD_DIR)/upnpd $(1)/usr/sbin/
60         $(INSTALL_DIR) $(1)/etc/linuxigd
61         $(INSTALL_DATA) $(PKG_BUILD_DIR)/etc/*.gif $(1)/etc/linuxigd/
62         $(INSTALL_DATA) $(PKG_BUILD_DIR)/etc/*.xml $(1)/etc/linuxigd/
63         $(INSTALL_DIR) $(1)/etc
64         $(INSTALL_DATA) ./files/upnpd.conf $(1)/etc/
65         $(INSTALL_DIR) $(1)/etc/init.d
66         $(INSTALL_BIN) ./files/upnpd.init $(1)/etc/init.d/upnpd
67 endef
68
69 $(eval $(call BuildPackage,linuxigd))