From 6e49fd1c34bcd185ad09e8069a6172d6618fbacc Mon Sep 17 00:00:00 2001 From: "W. Michael Petullo" Date: Sat, 28 Jul 2018 13:28:52 -0400 Subject: [PATCH] eventlog: remove package The eventlog package is no longer required by syslog-ng, and it conflicts with the files installed by syslog-ng. No other package requires eventlog, the external eventlog library project has not been updated in a long time, and syslog-ng is no longer compatible with the external eventlog library. Signed-off-by: W. Michael Petullo --- libs/eventlog/Makefile | 44 ------------------------------------------ 1 file changed, 44 deletions(-) delete mode 100644 libs/eventlog/Makefile diff --git a/libs/eventlog/Makefile b/libs/eventlog/Makefile deleted file mode 100644 index f24ace526..000000000 --- a/libs/eventlog/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -include $(TOPDIR)/rules.mk - -PKG_NAME:=eventlog -PKG_VERSION:=0.2.12 -PKG_RELEASE:=2 - -PKG_MAINTAINER:=W. Michael Petullo - -PKG_SOURCE_URL:=https://my.balabit.com/downloads/eventlog/0.2/ -PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz -PKG_HASH:=494dac8e01dc5ce323df2ad554d94874938dab51aa025987677b2bc6906a9c66 - -PKG_FIXUP:=autoreconf -PKG_INSTALL:=1 - -include $(INCLUDE_DIR)/package.mk - -define Package/libeventlog - SECTION:=libs - CATEGORY:=Libraries - TITLE:=A new API to format and send structured log messages. -endef - -define Package/eventlog/description - A new API to format and send structured log messages. It supports multiple message - representations (plain, XML attributes and XML tags) and multiple output methods - (local syslogd). -endef - -define Build/InstallDev - $(INSTALL_DIR) $(1)/usr/include - $(CP) $(PKG_INSTALL_DIR)/usr/include/eventlog $(1)/usr/include/ - $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libevtlog.{a,so*} $(1)/usr/lib/ - $(INSTALL_DIR) $(1)/usr/lib/pkgconfig - $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/eventlog.pc $(1)/usr/lib/pkgconfig/ -endef - -define Package/libeventlog/install - $(INSTALL_DIR) $(1)/usr/lib - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/libevtlog.so* $(1)/usr/lib/ -endef - -$(eval $(call BuildPackage,libeventlog))