|
|
- #
- # This is free software, licensed under the GNU General Public License v2.
- # See /LICENSE for more information.
- #
-
- include $(TOPDIR)/rules.mk
-
- PKG_NAME:=audit
- PKG_VERSION:=2.8.5
- PKG_RELEASE:=$(AUTORELEASE)
-
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
- PKG_SOURCE_URL:=http://people.redhat.com/sgrubb/audit
- PKG_HASH:=0e5d4103646e00f8d1981e1cd2faea7a2ae28e854c31a803e907a383c5e2ecb7
-
- PKG_MAINTAINER:=Thomas Petazzoni <thomas.petazzoni@bootlin.com>
- PKG_LICENSE:=GPL-2.0-or-later
- PKG_LICENSE_FILES:=COPYING
- PKG_CPE_ID:=cpe:/a:linux_audit_project:linux_audit
-
- PKG_FIXUP:=autoreconf
-
- PKG_USE_MIPS16:=0
-
- include $(INCLUDE_DIR)/package.mk
- include $(INCLUDE_DIR)/host-build.mk
-
- define Package/audit/Default
- TITLE:=Audit Daemon
- URL:=http://people.redhat.com/sgrubb/audit/
- endef
-
- define Package/audit/Default/description
- The audit package contains the user space utilities for
- storing and searching the audit records generated by
- the audit subsystem in the Linux 2.6 kernel
- endef
-
- define Package/libauparse
- $(call Package/audit/Default)
- SECTION:=libs
- CATEGORY:=Libraries
- TITLE+= (parsing shared library)
- DEPENDS:= +libaudit
- endef
-
- define Package/libauparse/description
- $(call Package/audit/Default/description)
- This package contains the audit parsing shared library.
- endef
-
- define Package/audit-utils
- $(call Package/audit/Default)
- SECTION:=utils
- CATEGORY:=Utilities
- TITLE+= (utilities)
- DEPENDS:= +libaudit +libauparse
- endef
-
- define Package/audit-utils/description
- $(call Package/audit/Default/description)
- This package contains the audit utilities.
- endef
-
- define Package/audit
- $(call Package/audit/Default)
- SECTION:=utils
- CATEGORY:=Utilities
- TITLE+= (daemon)
- DEPENDS:= +libaudit +libauparse +audit-utils +libev
- endef
-
- define Package/audit/description
- $(call Package/audit/Default/description)
- This package contains the audit daemon.
- endef
-
- CONFIGURE_VARS += \
- LDFLAGS_FOR_BUILD="$(HOST_LDFLAGS)" \
- CPPFLAGS_FOR_BUILD="$(HOST_CPPFLAGS)" \
- CFLAGS_FOR_BUILD="$(HOST_CFLAGS)" \
- CC_FOR_BUILD="$(HOSTCC)"
-
- CONFIGURE_ARGS += \
- --without-libcap-ng \
- --disable-systemd \
- --without-python \
- --without-python3 \
- --disable-zos-remote
-
- ifeq ($(ARCH),aarch64)
- CONFIGURE_ARGS += --with-aarch64
- else ifeq ($(ARCH),arm)
- CONFIGURE_ARGS += --with-arm
- endif
-
- # We can't use the default, as the default passes $(MAKE_ARGS), which
- # overrides CC, CFLAGS, etc. and defeats the *_FOR_BUILD definitions
- # passed in CONFIGURE_VARS
- define Build/Compile
- $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR)/$(MAKE_PATH)
- endef
-
- define Build/Install
- $(call Build/Install/Default,install)
- $(SED) 's%^dispatcher *=.*%dispatcher = /usr/sbin/audispd%' $(PKG_INSTALL_DIR)/etc/audit/auditd.conf
- endef
-
- define Build/InstallDev
- $(INSTALL_DIR) $(1)/usr/include
- $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
- $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
- $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc $(1)/usr/lib/pkgconfig/
- $(INSTALL_DIR) $(1)/usr/lib
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib/
- endef
-
- define Package/libauparse/install
- $(INSTALL_DIR) $(1)/usr/lib
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/libauparse.so.* $(1)/usr/lib/
- endef
-
- define Package/audit-utils/install
- $(INSTALL_DIR) $(1)/usr/bin
- $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
- $(INSTALL_DIR) $(1)/usr/sbin
- $(CP) \
- $(PKG_INSTALL_DIR)/usr/sbin/{augenrules,audispd,audisp-remote,auditctl,autrace,aureport,ausearch} \
- $(1)/usr/sbin/
- endef
-
- define Package/audit/install
- $(INSTALL_DIR) $(1)/etc/audit
- $(CP) $(PKG_INSTALL_DIR)/etc/audit/* $(1)/etc/audit/
- $(INSTALL_DIR) $(1)/etc/init.d
- $(INSTALL_BIN) ./files/audit.init $(1)/etc/init.d/audit
- $(INSTALL_DIR) $(1)/usr/sbin
- $(CP) $(PKG_INSTALL_DIR)/usr/sbin/auditd $(1)/usr/sbin/
- endef
-
- $(eval $(call HostBuild))
- $(eval $(call BuildPackage,libauparse))
- $(eval $(call BuildPackage,audit-utils))
- $(eval $(call BuildPackage,audit))
|