remove PKG_CAT from packages
[openwrt/svn-archive/archive.git] / admin / syslog-ng / Makefile
1 #
2 # Copyright (C) 2006 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:=syslog-ng
12 PKG_VERSION:=1.6.12
13 PKG_RELEASE:=1
14 PKG_MD5SUM:=a3cbfdb6e1e5beea181a7349749719f3
15
16 PKG_SOURCE_URL:= http://www.balabit.com/downloads/syslog-ng/1.6/src \
17 http://www.balabit.com/downloads/syslog-ng/stable/src
18 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/syslog-ng
26 SECTION:=admin
27 CATEGORY:=Administration
28 DEPENDS:=+libol
29 TITLE:=A powerful syslog daemon
30 URL:=http://www.balabit.com/products/syslog_ng/
31 endef
32
33 define Package/syslog-ng/description
34 syslog-ng reads and logs messages to the system console, log
35 files, other machines and/or users as specified by its
36 configuration file.
37
38 endef
39
40 define Package/syslog-ng/conffiles
41 /etc/syslog-ng/syslog-ng.conf
42 endef
43
44 define Build/Configure
45 $(call Build/Configure/Default,--disable-dependency-tracking \
46 --disable-full-static \
47 --enable-tcp-wrapper \
48 --with-libol="$(STAGING_DIR)/usr/bin",CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/usr/include/libol" \
49 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/usr/lib/libol")
50 endef
51
52 define Build/Compile
53 $(call Build/Compile/Default,DESTDIR="$(PKG_INSTALL_DIR)" \
54 all install)
55 endef
56
57 define Package/syslog-ng/install
58 $(INSTALL_DIR) $(1)/usr/sbin
59 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/syslog-ng $(1)/usr/sbin/
60 $(INSTALL_DIR) $(1)/etc/init.d
61 $(INSTALL_BIN) ./files/syslog-ng.init $(1)/etc/init.d/syslog-ng
62 $(INSTALL_DIR) $(1)/etc/syslog-ng
63 $(INSTALL_DATA) ./files/syslog-ng.conf $(1)/etc/syslog-ng/
64 endef
65
66 $(eval $(call BuildPackage,syslog-ng))