[packages_10.03.1] collectd: backport r29404
[openwrt/svn-archive/archive.git] / net / ngircd / Makefile
1 #
2 # Copyright (C) 2008-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:=ngircd
11 PKG_VERSION:=15
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:= \
16 ftp://ngircd.barton.de/pub/ngircd/ \
17 ftp://ftp.berlios.de/pub/ngircd/
18 PKG_MD5SUM:=c183a85eba6fe51255983848f099c8ae
19
20 PKG_INSTALL:=1
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/ngircd
25 SECTION:=net
26 CATEGORY:=Network
27 SUBMENU:=Instant Messaging
28 DEPENDS:=+zlib
29 TITLE:=Next Generation IRC Server
30 URL:=http://ngircd.barton.de
31 endef
32
33 define Package/ngircd/description
34 ngIRCd is an Open Source server for the Internet Relay Chat (IRC), which
35 is developed and published under the terms of the GNU General Public Licence.
36 ngIRCd means "next generation IRC daemon", it's written from scratch and
37 not deduced from the "grandfather of IRC daemons", the daemon of the IRCNet.
38 endef
39
40 define Package/ngircd/conffiles
41 /etc/ngircd.conf
42 endef
43
44 define Package/ngircd/install
45 $(INSTALL_DIR) $(1)/usr/sbin
46 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ngircd $(1)/usr/sbin/
47 $(INSTALL_DIR) $(1)/etc
48 $(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/ngircd.conf $(1)/etc/
49 endef
50
51 $(eval $(call BuildPackage,ngircd))