fix avahi compile on brcm-2.4
[openwrt/svn-archive/archive.git] / libs / libnfnetlink / Makefile
1 #
2 # Copyright (C) 2007 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:=libnfnetlink
12 PKG_VERSION:=0.0.39
13 PKG_RELEASE:=0
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=ftp://ftp.netfilter.org/pub/libnfnetlink/
17 PKG_MD5SUM:=348fed8c1edbe5b873ffc7b192140093
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/libnfnetlink
22 SECTION:=libs
23 CATEGORY:=Libraries
24 DEPENDS:=@LINUX_2_6
25 TITLE:=libnfnetlink
26 URL:=http://netfilter.org/projects/libnfnetlink/index.html
27 endef
28
29 define Package/libnfnetlink/description
30 libnfnetlink is is the low-level library for netfilter related kernel/userspace communication.
31 It provides a generic messaging infrastructure for in-kernel netfilter subsystems
32 (such as nfnetlink_log, nfnetlink_queue, nfnetlink_conntrack) and their respective users
33 and/or management tools in userspace.
34 endef
35
36 CONFIGURE_ARGS += \
37 --enable-static \
38 --enable-shared
39
40 define Build/Compile
41 $(MAKE) -C $(PKG_BUILD_DIR) \
42 CFLAGS="$(TARGET_CFLAGS)" \
43 DESTDIR="$(PKG_INSTALL_DIR)" \
44 all install
45 endef
46
47
48 define Build/InstallDev
49 mkdir -p $(1)/usr/include/libnfnetlink
50 $(CP) $(PKG_INSTALL_DIR)/usr/include/libnfnetlink/{libnfnetlink,linux_nfnetlink,linux_nfnetlink_compat}.h $(1)/usr/include/libnfnetlink/
51 mkdir -p $(1)/usr/lib
52 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libnfnetlink.{a,so*} $(1)/usr/lib/
53 endef
54
55 define Package/libnfnetlink/install
56 $(INSTALL_DIR) $(1)/usr/lib
57 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libnfnetlink.so.* $(1)/usr/lib/
58 endef
59
60 $(eval $(call BuildPackage,libnfnetlink))