libnetfilter-log: import from old packages feed
- update to latest version (v1.0.1) - add license info - add myself as maintainer Signed-off-by: Nicolas Thill <nico@openwrt.org>
This commit is contained in:
parent
2a3b9adae1
commit
d3b6ea7140
1 changed files with 75 additions and 0 deletions
75
libs/libnetfilter-log/Makefile
Normal file
75
libs/libnetfilter-log/Makefile
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
#
|
||||||
|
# Copyright (C) 2009-2014 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:=libnetfilter_log
|
||||||
|
PKG_VERSION:=1.0.1
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
|
PKG_SOURCE_URL:= \
|
||||||
|
http://www.netfilter.org/projects/libnetfilter_log/files/ \
|
||||||
|
ftp://ftp.netfilter.org/pub/libnetfilter_log/ \
|
||||||
|
http://mirrors.evolva.ro/netfilter.org/libnetfilter_log/
|
||||||
|
PKG_MD5SUM:=2a4bb0654ae675a52d2e8d1c06090b94
|
||||||
|
|
||||||
|
PKG_LICENSE:=GPL-2.0
|
||||||
|
PKG_LICENSE_FILE:=COPYING
|
||||||
|
PKG_MAINTAINER:=Nicolas Thill <nico@openwrt.org>
|
||||||
|
|
||||||
|
PKG_FIXUP:=autoreconf
|
||||||
|
PKG_INSTALL:=1
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define Package/libnetfilter-log
|
||||||
|
SECTION:=libs
|
||||||
|
CATEGORY:=Libraries
|
||||||
|
DEPENDS:=+libnfnetlink +kmod-nfnetlink-log
|
||||||
|
TITLE:=API to packets logged by the kernel packet filter
|
||||||
|
URL:=http://www.netfilter.org/projects/libnetfilter_log/
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/libnetfilter-log/description
|
||||||
|
libnetfilter_log is a userspace library providing interface to
|
||||||
|
packets that have been logged by the kernel packet filter.
|
||||||
|
endef
|
||||||
|
|
||||||
|
TARGET_CFLAGS += $(FPIC)
|
||||||
|
|
||||||
|
CONFIGURE_ARGS += \
|
||||||
|
--enable-static \
|
||||||
|
--enable-shared \
|
||||||
|
|
||||||
|
CONFIGURE_VARS += \
|
||||||
|
LIBNFNETLINK_CFLAGS="$(TARGET_CPPFLAGS)" \
|
||||||
|
LIBNFNETLINK_LIBS="$(TARGET_LDFLAGS)"
|
||||||
|
|
||||||
|
define Build/InstallDev
|
||||||
|
$(INSTALL_DIR) $(1)/usr/include/libnetfilter_log
|
||||||
|
$(INSTALL_DATA) \
|
||||||
|
$(PKG_INSTALL_DIR)/usr/include/libnetfilter_log/*.h \
|
||||||
|
$(1)/usr/include/libnetfilter_log/
|
||||||
|
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
|
$(CP) \
|
||||||
|
$(PKG_INSTALL_DIR)/usr/lib/libnetfilter_log*.{so*,a,la} \
|
||||||
|
$(1)/usr/lib/
|
||||||
|
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
||||||
|
$(INSTALL_DATA) \
|
||||||
|
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libnetfilter_log.pc \
|
||||||
|
$(1)/usr/lib/pkgconfig/
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/libnetfilter-log/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libnetfilter_log*.so.* $(1)/usr/lib/
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,libnetfilter-log))
|
Loading…
Reference in a new issue