[packages_10.03.1] merge r27798, r27799
[openwrt/svn-archive/archive.git] / net / znc / Makefile
1 #
2 # Copyright (C) 2009-2010 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
10 PKG_NAME:=znc
11 PKG_VERSION:=0.098
12 PKG_RELEASE:=4
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://znc.in/releases
16 PKG_MD5SUM:=5667b4acb1f01309d6eded77abac700c
17
18 PKG_BUILD_PARALLEL:=1
19
20
21 define Package/znc/default
22 SUBMENU:=Instant Messaging
23 SECTION:=net
24 CATEGORY:=Network
25 TITLE:=ZNC
26 URL:=http://en.znc.in/
27 MAINTAINER:=Jonas Gorski <jonas.gorski+openwrt@gmail.com>
28 endef
29
30 define Package/znc
31 $(Package/znc/default)
32 DEPENDS:=+libopenssl +uclibcxx
33 MENU:=1
34 endef
35
36 define Package/znc/description
37 ZNC is an IRC bouncer with many advanced features like detaching,
38 multiple users, per channel playback buffer, SSL, IPv6, transparent DCC
39 bouncing, and c++ module support to name a few.
40 endef
41
42 define Package/znc/conffiles
43 /etc/config/znc
44 endef
45
46
47 define Package/znc/install
48 $(INSTALL_DIR) $(1)/usr/bin
49 $(INSTALL_BIN) $(PKG_BUILD_DIR)/znc $(1)/usr/bin/
50 $(INSTALL_DIR) $(1)/etc/init.d
51 $(INSTALL_BIN) ./files/znc.init $(1)/etc/init.d/znc
52 $(INSTALL_DIR) $(1)/etc/config
53 $(INSTALL_DATA) ./files/znc.conf $(1)/etc/config/znc
54 $(INSTALL_DIR) $(1)/usr/lib/znc/
55 $(INSTALL_BIN) $(PKG_BUILD_DIR)/modules/extra/droproot.so $(1)/usr/lib/znc/
56 endef
57
58
59 ZNC_MODULES :=
60 ZNC_MODULE_TARGETS := extra/droproot.so
61
62 define module
63 define Package/znc-mod-$(strip $(1))
64 $(Package/znc/default)
65 TITLE+= ($(strip $(1)) plugin)
66 DEPENDS:=znc
67 endef
68
69 define Package/znc-mod-$(strip $(1))/description
70 $(strip $(2))
71 endef
72
73 define Package/znc-mod-$(strip $(1))/install
74 $(INSTALL_DIR) $$(1)/usr/lib/znc/
75 $(INSTALL_BIN) $$(PKG_BUILD_DIR)/modules/$(strip $(3))$(subst -,_,$(strip $(1))).so $$(1)/usr/lib/znc/
76 # include webadmin page templates if existing
77 if [ -d $$(PKG_BUILD_DIR)/modules/$(strip $(3))$(subst -,_,$(strip $(1))) ]; then \
78 $(INSTALL_DIR) $$(1)/usr/share/znc/ ;\
79 $(CP) -r $$(PKG_BUILD_DIR)/modules/$(strip $(3))$(subst -,_,$(strip $(1))) $$(1)/usr/share/znc/ ;\
80 fi
81 endef
82
83 ZNC_MODULES += znc-mod-$(strip $(1))
84 $(if $(CONFIG_PACKAGE_znc-mod-$(strip $(1))),ZNC_MODULE_TARGETS += $(strip $(3))$(subst -,_,$(strip $(1))).so)
85 endef
86
87 define webadmin
88 define Package/znc-mod-webadmin
89 $(Package/znc/default)
90 TITLE+= (webadmin plugin)
91 DEPENDS:=znc
92 endef
93
94 define Package/znc-mod-webadmin/description
95 Allows you to add/remove/edit users and settings on the fly via a web browser.
96 endef
97
98 define Package/znc-mod-webadmin/install
99 $(INSTALL_DIR) $$(1)/usr/lib/znc/
100 $(INSTALL_BIN) $$(PKG_BUILD_DIR)/modules/webadmin.so $$(1)/usr/lib/znc/
101 $(INSTALL_DIR) $$(1)/usr/share/znc/
102 $(CP) -r $$(PKG_BUILD_DIR)/modules/webadmin $$(1)/usr/share/znc/
103 $(INSTALL_DIR) $$(1)/usr/share/znc/webskins/
104 $(CP) -r $$(PKG_BUILD_DIR)/webskins/_default_ $$(1)/usr/share/znc/webskins/
105 endef
106
107 ZNC_MODULES += znc-mod-webadmin
108 $(if $(CONFIG_PACKAGE_znc-mod-webadmin),ZNC_MODULE_TARGETS += webadmin.so)
109 endef
110
111 define webskin
112 define Package/znc-webskin-$(strip $(1))
113 $(Package/znc/default)
114 TITLE+= ($(strip $(1)) webskin)
115 DEPENDS:=znc-mod-webadmin
116 endef
117
118 define Package/znc-webskin-$(strip $(1))/description
119 $(strip $(1)) webskin for webadmin
120 endef
121
122 define Package/znc-webskin-$(strip $(1))/install
123 $(INSTALL_DIR) $$(1)/usr/share/znc/webskins/
124 $(CP) -r $$(PKG_BUILD_DIR)/webskins/$(strip $(1)) $$(1)/usr/share/znc/webskins/
125 endef
126 ZNC_MODULES += znc-webskin-$(strip $(1))
127 endef
128
129 , := ,
130
131 $(eval $(call module,admin,Allows you to add/remove/edit users and settings on \
132 the fly via IRC messages.))
133
134 $(eval $(call module,adminlog,Log user connects and disconnects and failed \
135 logins to file or syslog.))
136
137 $(eval $(call module,autoattach,Reattaches you to channels on activity.))
138
139 $(eval $(call module,autocycle,Cycles a channel when you are the only one in \
140 there and you don't have op.))
141
142 $(eval $(call module,autoop,Auto op the good guys.))
143
144 $(eval $(call module,autoreply,Gives a automatic reply if someone messages you \
145 if you are away.))
146
147 $(eval $(call module,away,Stores messages while away$(,) also auto away.))
148
149 $(eval $(call module,awaynick,Change your nick while you are away.))
150
151 $(eval $(call module,blockuser,Blocks certain users from using ZNC saying \
152 their account was disabled.))
153
154 $(eval $(call module,buffextras,Add nick changes$(,) joins$(,) parts$(,) topic \
155 changes etc. to your playback buffer.))
156
157 $(eval $(call module,certauth,This module allows users to log in via SSL \
158 client keys.))
159
160 $(eval $(call module,chansaver,Keeping config up to date when user joins and \
161 parts.))
162
163 $(eval $(call module,clientnotify,Notify about new incoming connections to \
164 your user.))
165
166 $(eval $(call module,crypt,Encryption for channel/private messages.))
167
168 $(eval $(call module,disconkick,This module will kick your client from all \
169 channels where you are$(,) in case if ZNC disconnects from server.))
170
171 $(eval $(call module,fail2ban,Block IPs for some time after a failed login.))
172
173 $(eval $(call module,keepnick,Tries to get you your primary nick.))
174
175 $(eval $(call module,kickrejoin,Implements auto-rejoin-on-kick.))
176
177 $(eval $(call module,lastseen,Logs when a user last logged in to ZNC.))
178
179 $(eval $(call module,nickserv,Auths you with NickServ.))
180
181 $(eval $(call module,notes,This modules stores and displays short notes using \
182 a key/note pairs and shows them to you on connect.))
183
184 $(eval $(call module,partyline,Allows ZNC users to join internal channels and \
185 query other ZNC users on the same ZNC.))
186
187 $(eval $(call module,perform,Performs commands on connect.))
188
189 $(eval $(call module,q,Auths you with Q (and a little more).))
190
191 $(eval $(call module,raw,View all of the raw traffic.))
192
193 $(eval $(call module,route-replies,Routes back answers to the right client \
194 when connected with multiple clients.))
195
196 $(eval $(call module,savebuff,Saves your channel buffers into an encrypted \
197 file so they can survive restarts and reboots.))
198
199 $(eval $(call module,schat,SSL (encrypted) DCC chats.))
200
201 $(eval $(call module,simple-away,This module will automatically set you away \
202 on IRC while you are disconnected from the bouncer.))
203
204 $(eval $(call module,stickychan,Keeps you sticked to specific channels.))
205
206 $(eval $(call module,watch,Monitor activity for specific text patterns from \
207 specific users and have the text sent to a special query window.))
208
209 $(eval $(call module,antiidle,Hides your idle time.,extra/))
210
211 $(eval $(call module,autovoice,Autovoices everyone who joins some channel., \
212 extra/))
213
214 $(eval $(call module,block-motd,This module blocks the server's Message of the \
215 Day.,extra/))
216
217 $(eval $(call module,clearbufferonmsg,This module keeps the buffer until the \
218 next message from the client.,extra/))
219
220 $(eval $(call module,ctcpflood,This module tries to block ctcp floods.,extra/))
221
222 $(eval $(call module,fakeonline,This module fakes the online status of \
223 ZNC-*users.,extra/))
224
225 $(eval $(call module,flooddetach,This module detaches you from channels which \
226 are flooded.,extra/))
227
228 $(eval $(call module,listsockets,This module displays a list of all open \
229 sockets in ZNC.,extra/))
230
231 $(eval $(call module,log,Log conversations to file.,extra/))
232
233 $(eval $(call module,motdfile,Reads a MOTD from a file and displays it to \
234 users when they login.,extra/))
235
236 $(eval $(call module,notify-connect,Sends a notice to all admins when a user \
237 logs in or out.,extra/))
238
239 $(eval $(call module,send-raw,Allows you to send raw traffic to IRC from \
240 other users.,extra/))
241
242 $(eval $(call module,shell,Have your unix shell in a query window right inside \
243 of your IRC client.,extra/))
244
245 $(eval $(call webadmin))
246
247 $(eval $(call webskin,dark-clouds))
248 $(eval $(call webskin,forest))
249 $(eval $(call webskin,ice))
250
251 PKG_CONFIG_DEPENDS := $(patsubst %,CONFIG_PACKAGE_%,$(ZNC_MODULES))
252
253 include $(INCLUDE_DIR)/package.mk
254
255 CONFIGURE_VARS += \
256 CXX="$(STAGING_DIR)/host/bin/g++-uc" \
257 CXXFLAGS="$(TARGET_CFLAGS) -fno-builtin -fno-rtti -nostdinc++" \
258 CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
259 LDFLAGS="-nodefaultlibs -L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
260 LIBS="-luClibc++ -lm -lssl -lcrypto $(LIBGCC_S) -lc"
261
262 CONFIGURE_ARGS += \
263 --disable-c-ares \
264 --enable-extra \
265 --disable-perl
266
267 MAKE_FLAGS += \
268 CXX="$(STAGING_DIR)/host/bin/g++-uc"
269
270 define Build/Configure
271 $(call Build/Configure/Default,)
272 $(call libtool_disable_rpath)
273 endef
274
275 define Build/Compile
276 $(call Build/Compile/Default,znc)
277 $(MAKE_VARS) $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR)/modules \
278 $(MAKE_FLAGS) $(ZNC_MODULE_TARGETS)
279 endef
280
281 $(eval $(call BuildPackage,znc))
282 $(foreach m,$(ZNC_MODULES),$(eval $(call BuildPackage,$(m))))