summaryrefslogtreecommitdiffstats
path: root/libs/libnids/Makefile
blob: 05baa6bfd41f60d0f826c99612f7d7bf8f3ea280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#
# Copyright (C) 2006-2009 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:=libnids
PKG_VERSION:=1.24
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/libnids
PKG_MD5SUM:=72d37c79c85615ffe158aa524d649610

include $(INCLUDE_DIR)/package.mk

define Package/libnids
  SECTION:=libs
  CATEGORY:=Libraries
  DEPENDS:=+libnet0
  TITLE:=A network intrusion detection library
  URL:=http://libnids.sourceforge.net/
endef

define Package/libnids/description
	An implementation of an E-component of Network Intrusion Detection
	System.
endef

define Build/Configure
	$(call Build/Configure/Default, \
		--enable-shared \
		--enable-static \
		--with-libnet="$(STAGING_DIR)/usr/lib/libnet-1.0.x" \
		--with-libpcap="$(STAGING_DIR)/usr" \
		--disable-libglib \
		, \
		CFLAGS="$$$$CFLAGS $$$$CPPFLAGS" \
	)
endef

TARGET_CFLAGS += $(FPIC)

define Build/Compile
	$(MAKE) -C $(PKG_BUILD_DIR) \
		LNETLIB="-L$(STAGING_DIR)/usr/lib/libnet-1.0.x/lib -lnet" \
		PCAPLIB="$(TARGET_LDFLAGS) -lpcap" \
		install_prefix="$(PKG_INSTALL_DIR)" \
		all install
endef

define Build/InstallDev
	$(INSTALL_DIR) $(1)/usr/include
	$(CP) $(PKG_INSTALL_DIR)/usr/include/nids.h $(1)/usr/include/
	$(INSTALL_DIR) $(1)/usr/lib
	$(CP) $(PKG_INSTALL_DIR)/usr/lib/libnids.{a,so*} $(1)/usr/lib/
endef

define Package/libnids/install
	$(INSTALL_DIR) $(1)/usr/lib
	$(CP) $(PKG_INSTALL_DIR)/usr/lib/libnids.so.* $(1)/usr/lib/
endef

$(eval $(call BuildPackage,libnids))