mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
89 lines
2.6 KiB
Makefile
89 lines
2.6 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libtrace
|
|
PKG_VERSION:=3.0.23
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/apietila/libtrace.git
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_VERSION:=e4b4c5cce35a52da152776a00532aa0b80879c5b
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_MIRROR_HASH:=skip
|
|
|
|
PKG_LICENSE:=GPLv2
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
CXX_DEPENDS:=libstdcpp
|
|
|
|
define Package/libtrace/Default
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Libtrace library for packet trace processing
|
|
URL:=http://research.wand.net.nz/software/libtrace.php
|
|
endef
|
|
|
|
define Package/libtrace
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=Libtrace library for packet trace processing
|
|
URL:=http://research.wand.net.nz/software/libtrace.php
|
|
DEPENDS:=+libpcap +libpthread +zlib +libbz2 +liblzo +librt +liblzma +$(CXX_DEPENDS)
|
|
endef
|
|
|
|
define Package/libtrace/description
|
|
Network trace processing library for trace processing. Supports multiple
|
|
input methods, including device capture, raw and gz-compressed
|
|
trace, and sockets.
|
|
endef
|
|
|
|
define Package/libtrace-tools
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Libtrace tools for packet trace processing
|
|
URL:=http://research.wand.net.nz/software/libtrace.php
|
|
DEPENDS:=+libncurses +libtrace
|
|
endef
|
|
|
|
define Package/libtrace-tools/description
|
|
Network trace processing tools for trace processing.
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--with-bzip2 \
|
|
--with-zlib \
|
|
--with-lzo \
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libtrace.{a,so*} $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libwandio.{a,so*} $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libpacketdump.{a,so*} $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/libtrace/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libtrace.so.* $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libwandio.so.* $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libpacketdump.so.* $(1)/usr/lib/
|
|
$(INSTALL_DIR) $(1)/usr/lib/libpacketdump
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libpacketdump/*.so* $(1)/usr/lib/libpacketdump/
|
|
endef
|
|
|
|
define Package/libtrace-tools/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{traceanon,tracediff,traceends,tracepktdump,tracereplay,tracereport,tracertstats,tracesplit,tracestats} $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libtrace))
|
|
$(eval $(call BuildPackage,libtrace-tools))
|
|
|