ced4a7096b7276d8103ac180602f4be37f475dac
[openwrt/svn-archive/archive.git] / net / updatedd / Makefile
1 #
2 # Copyright (C) 2007-2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=updatedd
12 PKG_VERSION:=2.6
13 PKG_RELEASE:=6
14
15 PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/
16 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.bz2
17 PKG_MD5SUM:=f03446105ed043cd5dbd1ab95484d27f
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/updatedd
22 SECTION:=net
23 CATEGORY:=Network
24 MENU:=1
25 TITLE:=A tool to update dynamic dns services
26 URL:=http://www.philipp-benner.de/updatedd/
27 endef
28
29 define Package/updatedd/description
30 Updatedd is a small tool that will update one of many dynamic
31 dns services on boot.
32 Please look at the /etc/init.d/ddns script for more info.
33
34 endef
35
36 define Package/updatedd-mod-changeip
37 SECTION:=net
38 CATEGORY:=Network
39 DEPENDS:=updatedd
40 TITLE:=changeip.com
41 endef
42
43 define Package/updatedd-mod-dyndns
44 SECTION:=net
45 CATEGORY:=Network
46 DEPENDS:=updatedd
47 TITLE:=dyndns.org
48 endef
49
50 define Package/updatedd-mod-eurodyndns
51 SECTION:=net
52 CATEGORY:=Network
53 DEPENDS:=updatedd
54 TITLE:=eurodyndns.org
55 endef
56
57 define Package/updatedd-mod-hn
58 SECTION:=net
59 CATEGORY:=Network
60 DEPENDS:=updatedd
61 TITLE:=hn.org
62 endef
63
64 define Package/updatedd-mod-noip
65 SECTION:=net
66 CATEGORY:=Network
67 DEPENDS:=updatedd
68 TITLE:=no-ip.com
69 endef
70
71 define Package/updatedd-mod-ods
72 SECTION:=net
73 CATEGORY:=Network
74 DEPENDS:=updatedd
75 TITLE:=ods.org
76 endef
77
78 define Package/updatedd-mod-ovh
79 SECTION:=net
80 CATEGORY:=Network
81 DEPENDS:=updatedd
82 TITLE:=ovh.com
83 endef
84
85 define Package/updatedd-mod-regfish
86 SECTION:=net
87 CATEGORY:=Network
88 DEPENDS:=updatedd
89 TITLE:=regfish.com
90 endef
91
92 define Package/updatedd-mod-tzo
93 SECTION:=net
94 CATEGORY:=Network
95 DEPENDS:=updatedd
96 TITLE:=tzo.com
97 endef
98
99 define Package/updatedd-mod-zoneedit
100 SECTION:=net
101 CATEGORY:=Network
102 DEPENDS:=updatedd
103 TITLE:=zoneedit.com
104 endef
105
106 MAKE_FLAGS += \
107 DESTDIR="$(PKG_INSTALL_DIR)" \
108 all install
109
110 define BuildPlugin
111 define Package/$(1)/install
112 $(INSTALL_DIR) $$(1)/usr/lib/updatedd
113 $(CP) $(PKG_INSTALL_DIR)/usr/lib/updatedd/$(2).so* $$(1)/usr/lib/updatedd/
114 endef
115
116 $$(eval $$(call BuildPackage,$(1)))
117 endef
118
119 define Package/updatedd/install
120 $(INSTALL_DIR) $(1)/etc/init.d
121 $(INSTALL_BIN) ./files/updatedd.init $(1)/etc/init.d/updatedd
122 $(INSTALL_DIR) $(1)/etc/config
123 $(INSTALL_DATA) ./files/updatedd.config $(1)/etc/config/updatedd
124 $(INSTALL_DIR) $(1)/usr/bin
125 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/updatedd $(1)/usr/bin/
126 $(INSTALL_DIR) $(1)/usr/lib/updatedd
127 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
128 $(INSTALL_DATA) ./files/updatedd.hotplug $(1)/etc/hotplug.d/iface/30-updatedd
129 endef
130
131 $(eval $(call BuildPackage,updatedd))
132 $(eval $(call BuildPlugin,updatedd-mod-changeip,libchangeip))
133 $(eval $(call BuildPlugin,updatedd-mod-dyndns,libdyndns))
134 $(eval $(call BuildPlugin,updatedd-mod-eurodyndns,libeurodyndns))
135 $(eval $(call BuildPlugin,updatedd-mod-hn,libhn))
136 $(eval $(call BuildPlugin,updatedd-mod-noip,libnoip))
137 $(eval $(call BuildPlugin,updatedd-mod-ods,libods))
138 $(eval $(call BuildPlugin,updatedd-mod-ovh,libovh))
139 $(eval $(call BuildPlugin,updatedd-mod-regfish,libregfish))
140 $(eval $(call BuildPlugin,updatedd-mod-tzo,libtzo))
141 $(eval $(call BuildPlugin,updatedd-mod-zoneedit,libzoneedit))