Rebased from upstream / out of band repository.
[librecmc/librecmc.git] / package / devel / strace / Makefile
diff --git a/package/devel/strace/Makefile b/package/devel/strace/Makefile
new file mode 100644 (file)
index 0000000..c4761a4
--- /dev/null
@@ -0,0 +1,77 @@
+#
+# Copyright (C) 2006-2016 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+include $(INCLUDE_DIR)/kernel.mk
+
+PKG_NAME:=strace
+PKG_VERSION:=4.25
+PKG_RELEASE:=1
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
+PKG_SOURCE_URL:=https://strace.io/files/$(PKG_VERSION)
+PKG_HASH:=d685f8e65470b7832c3aff60c57ab4459f26ff89f07c10f92bd70ee89efac701
+
+PKG_LICENSE:=BSD-3c
+PKG_LICENSE_FILES:=COPYRIGHT
+PKG_CPE_ID:=cpe:/a:paul_kranenburg:strace
+
+PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
+
+PKG_FIXUP:=autoreconf
+PKG_CONFIG_DEPENDS:=CONFIG_PACKAGE_strace_libunwind
+PKG_INSTALL:=1
+
+include $(INCLUDE_DIR)/package.mk
+
+HOST_CFLAGS += -I$(LINUX_DIR)/user_headers/include
+
+ifeq ($(ARCH),aarch64)
+  CONFIGURE_ARGS += --enable-mpers=check
+endif
+
+CONFIGURE_VARS+= \
+       LDFLAGS_FOR_BUILD="$(HOST_LDFLAGS)" \
+       CPPFLAGS_FOR_BUILD="$(HOST_CPPFLAGS)" \
+       CFLAGS_FOR_BUILD="$(HOST_CFLAGS)" \
+       CC_FOR_BUILD="$(HOST_CC)"
+
+define Package/strace
+  SECTION:=utils
+  CATEGORY:=Utilities
+  TITLE:=System call tracer
+  DEPENDS:=+PACKAGE_strace_libunwind:libunwind
+  URL:=http://strace.sourceforge.net/
+endef
+
+define Package/strace/description
+A useful diagnostic, instructional, and debugging tool. Allows you to track what
+system calls a program makes while it is running.
+endef
+
+define Package/strace/config
+config PACKAGE_strace_libdw
+       bool "Enable stack tracing support using libdw"
+       default n
+config PACKAGE_strace_libunwind
+       bool "Enable stack tracing support using libunwind (experimental)"
+       default n
+endef
+
+CONFIGURE_ARGS += \
+       --with-libdw=$(if $(CONFIG_PACKAGE_strace_libdw),yes,no) \
+       --with-libunwind=$(if $(CONFIG_PACKAGE_strace_libunwind),yes,no)
+
+MAKE_FLAGS := \
+       CCOPT="$(TARGET_CFLAGS)"
+
+define Package/strace/install
+       $(INSTALL_DIR) $(1)/usr/bin
+       $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/strace $(1)/usr/bin/
+endef
+
+$(eval $(call BuildPackage,strace))