a086f94c24
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28919 3c298f89-4303-0410-b956-a3cf2f4a3e73
147 lines
3.7 KiB
Makefile
147 lines
3.7 KiB
Makefile
#
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ulogd
|
|
PKG_VERSION:=1.24
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=ftp://ftp.netfilter.org/pub/ulogd/ \
|
|
ftp://ftp.be.netfilter.org/pub/netfilter/ulogd/ \
|
|
ftp://ftp.de.netfilter.org/pub/netfilter/ulogd/ \
|
|
ftp://ftp.no.netfilter.org/pub/netfilter/ulogd/
|
|
PKG_MD5SUM:=05b4ed2926b9a22aaeaf642917bbf8ff
|
|
|
|
define Package/ulogd/Default
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
URL:=http://www.netfilter.org/projects/ulogd/index.html
|
|
endef
|
|
|
|
define Package/ulogd
|
|
$(call Package/ulogd/Default)
|
|
DEPENDS:=+iptables-mod-ulog
|
|
TITLE:=Netfilter userspace logging daemon
|
|
MENU:=1
|
|
endef
|
|
|
|
define Package/ulogd/conffiles
|
|
/etc/default/ulogd
|
|
/etc/ulogd.conf
|
|
endef
|
|
|
|
define Package/ulogd-mod-mysql
|
|
$(call Package/ulogd/Default)
|
|
DEPENDS:=ulogd +libmysqlclient
|
|
TITLE:=Output plugin for logging to a MySQL database
|
|
endef
|
|
|
|
define Package/ulogd-mod-pcap
|
|
$(call Package/ulogd/Default)
|
|
DEPENDS:=ulogd +libpcap
|
|
TITLE:=Output plugin for logging in pcap format
|
|
endef
|
|
|
|
define Package/ulogd-mod-pgsql
|
|
$(call Package/ulogd/Default)
|
|
DEPENDS:=ulogd +libpq
|
|
TITLE:=Output plugin for logging to a PostgreSQL database
|
|
endef
|
|
|
|
define Package/ulogd-mod-sqlite
|
|
$(call Package/ulogd/Default)
|
|
DEPENDS:=ulogd +libsqlite3
|
|
TITLE:=Output plugin for logging to an SQLite database
|
|
endef
|
|
|
|
define Package/ulogd-mod-extra
|
|
$(call Package/ulogd/Default)
|
|
DEPENDS:=ulogd
|
|
TITLE:=Extra plugins
|
|
endef
|
|
|
|
define Package/ulogd-mod-extra/description
|
|
This package contains the LOCAL, LOGEMU, OPRINT, PWSNIFF and SYSLOG plugins.
|
|
endef
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
ifneq ($(Package/ulogd-mod-mysql),)
|
|
ULOGD_MYSQL_OPTION:= --with-mysql="$(STAGING_DIR)/usr"
|
|
endif
|
|
|
|
ifneq ($(Package/ulogd-mod-pcap),)
|
|
ULOGD_PCAP_HEADER:=yes
|
|
else
|
|
ULOGD_PCAP_HEADER:=no
|
|
endif
|
|
|
|
ifneq ($(Package/ulogd-mod-pgsql),)
|
|
ULOGD_PGSQL_OPTION:= --with-pgsql="$(STAGING_DIR)/usr"
|
|
endif
|
|
|
|
ifneq ($(Package/ulogd-mod-sqlite),)
|
|
ULOGD_SQLITE_OPTION:= --with-sqlite3="$(STAGING_DIR)/usr"
|
|
endif
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default, \
|
|
$(ULOGD_MYSQL_OPTION) \
|
|
$(ULOGD_PGSQL_OPTION) \
|
|
$(ULOGD_SQLITE_OPTION) \
|
|
, \
|
|
ac_cv_header_pcap_h=$(ULOGD_PCAP_HEADER) \
|
|
)
|
|
$(SED) 's/-lgcc_s//g' $(PKG_BUILD_DIR)/Rules.make
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
CFLAGS="$(TARGET_CFLAGS) \
|
|
-Iinclude \
|
|
-I$(PKG_BUILD_DIR)/include/ulogd \
|
|
-I$(PKG_BUILD_DIR)/include \
|
|
-I$(PKG_BUILD_DIR)/libipulog/include \
|
|
-Wl,--export-dynamic \
|
|
$(TARGET_CPPFLAGS)" \
|
|
all install
|
|
endef
|
|
|
|
define Package/ulogd/install
|
|
$(INSTALL_DIR) $(1)/etc
|
|
$(CP) $(PKG_INSTALL_DIR)/etc/ulogd.conf $(1)/etc/
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ulogd $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/usr/lib/ulogd
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ulogd/ulogd_BASE.so $(1)/usr/lib/ulogd/
|
|
$(INSTALL_DIR) $(1)/etc/default
|
|
$(INSTALL_DATA) ./files/ulogd.default $(1)/etc/default/ulogd
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/ulogd.init $(1)/etc/init.d/ulogd
|
|
endef
|
|
|
|
define BuildPlugin
|
|
define Package/$(1)/install
|
|
$(INSTALL_DIR) $$(1)/usr/lib/ulogd
|
|
for m in $(2); do \
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ulogd/ulogd_$$$$$$$${m}.so $$(1)/usr/lib/ulogd/ ; \
|
|
done
|
|
endef
|
|
|
|
$$(eval $$(call BuildPackage,$(1)))
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ulogd))
|
|
$(eval $(call BuildPlugin,ulogd-mod-mysql,MYSQL))
|
|
$(eval $(call BuildPlugin,ulogd-mod-pcap,PCAP))
|
|
$(eval $(call BuildPlugin,ulogd-mod-pgsql,PGSQL))
|
|
$(eval $(call BuildPlugin,ulogd-mod-sqlite,SQLITE3))
|
|
$(eval $(call BuildPlugin,ulogd-mod-extra,LOCAL LOGEMU OPRINT PWSNIFF SYSLOG))
|