2012-10-17 13:00:44 +00:00
|
|
|
#
|
2013-01-13 19:49:06 +00:00
|
|
|
# Copyright (C) 2007-2013 OpenWrt.org
|
2012-10-17 13:00:44 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=libnfnetlink
|
2022-04-05 13:26:24 +00:00
|
|
|
PKG_VERSION:=1.0.2
|
|
|
|
PKG_RELEASE:=1
|
2012-10-17 13:00:44 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:= \
|
|
|
|
http://www.netfilter.org/projects/libnfnetlink/files/ \
|
2018-06-11 11:34:23 +00:00
|
|
|
ftp://ftp.netfilter.org/pub/libnfnetlink/
|
2022-04-05 13:26:24 +00:00
|
|
|
PKG_HASH:=b064c7c3d426efb4786e60a8e6859b82ee2f2c5e49ffeea640cfe4fe33cbc376
|
2016-06-07 09:42:32 +00:00
|
|
|
PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
|
2014-11-02 12:20:54 +00:00
|
|
|
PKG_LICENSE:=GPL-2.0+
|
2022-09-03 16:17:26 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:netfilter:libnfnetlink
|
2012-10-17 13:00:44 +00:00
|
|
|
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/libnfnetlink
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=A low-level library for netfilter related kernel/userspace communication
|
|
|
|
URL:=http://netfilter.org/projects/libnfnetlink/
|
2019-01-22 18:17:32 +00:00
|
|
|
ABI_VERSION:=0
|
2012-10-17 13:00:44 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libnfnetlink/description
|
|
|
|
libnfnetlink is is the low-level library for netfilter related kernel/userspace communication.
|
|
|
|
It provides a generic messaging infrastructure for in-kernel netfilter subsystems
|
|
|
|
(such as nfnetlink_log, nfnetlink_queue, nfnetlink_conntrack) and their respective users
|
|
|
|
and/or management tools in userspace.
|
|
|
|
endef
|
|
|
|
|
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-static \
|
|
|
|
--enable-shared
|
|
|
|
|
2019-08-27 22:49:22 +00:00
|
|
|
CONFIGURE_VARS += \
|
2021-03-19 23:09:26 +00:00
|
|
|
lt_prog_compiler_pic="$(FPIC)"
|
2019-08-27 22:49:22 +00:00
|
|
|
|
2012-10-17 13:00:44 +00:00
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include/libnfnetlink
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/include/libnfnetlink/{libnfnetlink,linux_nfnetlink,linux_nfnetlink_compat}.h \
|
|
|
|
$(1)/usr/include/libnfnetlink/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/libnfnetlink.{a,so*} \
|
|
|
|
$(1)/usr/lib/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libnfnetlink.pc \
|
|
|
|
$(1)/usr/lib/pkgconfig/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libnfnetlink/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/libnfnetlink.so.* \
|
|
|
|
$(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,libnfnetlink))
|