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