summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-09-08 19:16:32 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-09-08 19:16:32 +0200
commite99c121f83932e62783c1e0da2b5bdabca0d460d (patch)
tree36b3b6e1f5fd350908b07a12cf567891d7ef394d /package
parent6f6f1122c20c87fdf43d04badd06a092d71170cc (diff)
remove syslog-ng, new buildsystem is cmake based, can not disable java. use busybox syslog or rsyslog
Diffstat (limited to 'package')
-rw-r--r--package/eventlog/Makefile27
-rw-r--r--package/syslog-ng/Makefile37
-rw-r--r--package/syslog-ng/files/syslog-ng.conf16
-rw-r--r--package/syslog-ng/files/syslog-ng.conffiles1
-rw-r--r--package/syslog-ng/files/syslog-ng.postinst3
-rw-r--r--package/syslog-ng/files/syslog_ng.init32
6 files changed, 0 insertions, 116 deletions
diff --git a/package/eventlog/Makefile b/package/eventlog/Makefile
deleted file mode 100644
index 998915f1e..000000000
--- a/package/eventlog/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-# This file is part of the OpenADK project. OpenADK is copyrighted
-# material, please see the LICENCE file in the top-level directory.
-
-include $(ADK_TOPDIR)/rules.mk
-
-PKG_NAME:= eventlog
-PKG_VERSION:= 0.2.12
-PKG_RELEASE:= 1
-PKG_HASH:= f55695b354e5f16ef0a30cddc64ffe70215aa75fb290b7001b9839f617f0201d
-PKG_DESCR:= eventlog library for syslog-ng
-PKG_SECTION:= libs/misc
-PKG_URL:= http://www.balabit.com
-PKG_SITES:= http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/3.5.4.1/source/
-
-DISTFILES:= ${PKG_NAME}_${PKG_VERSION}+20120504+1700.tar.gz
-WRKDIST= ${WRKDIR}/${PKG_NAME}-${PKG_VERSION}+20120504+1700
-
-include $(ADK_TOPDIR)/mk/package.mk
-
-$(eval $(call PKG_template,EVENTLOG,eventlog,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-
-eventlog-install:
- $(INSTALL_DIR) $(IDIR_EVENTLOG)/usr/lib
- $(CP) $(WRKINST)/usr/lib/libevtlog*.so* \
- $(IDIR_EVENTLOG)/usr/lib
-
-include ${ADK_TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/syslog-ng/Makefile b/package/syslog-ng/Makefile
deleted file mode 100644
index 0afb40e75..000000000
--- a/package/syslog-ng/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-# This file is part of the OpenADK project. OpenADK is copyrighted
-# material, please see the LICENCE file in the top-level directory.
-
-include ${ADK_TOPDIR}/rules.mk
-
-PKG_NAME:= syslog-ng
-PKG_VERSION:= 3.5.4.1
-PKG_RELEASE:= 1
-PKG_HASH:= 92c6969e4172b4fd32390f80043b4de7b116f29989d8c2e5a8a687ee6dcd6f66
-PKG_DESCR:= powerful syslog daemon
-PKG_SECTION:= sys/misc
-PKG_BUILDDEP:= eventlog
-PKG_DEPENDS:= eventlog
-PKG_URL:= http://www.balabit.com/
-PKG_SITES:= http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/${PKG_VERSION}/source/
-
-PKG_LIBC_DEPENDS:= glibc musl
-
-DISTFILES:= ${PKG_NAME}_${PKG_VERSION}.tar.gz
-
-include ${ADK_TOPDIR}/mk/package.mk
-
-$(eval $(call PKG_template,SYSLOG_NG,syslog-ng,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-
-CONFIGURE_ARGS+= --enable-full-dynamic \
- --disable-tcp-wrapper
-CONFIGURE_ENV+= ac_cv_lib_nsl_gethostbyname=no
-
-syslog-ng-install:
- ${INSTALL_DIR} ${IDIR_SYSLOG_NG}/usr/sbin \
- ${IDIR_SYSLOG_NG}/etc/syslog-ng
- ${INSTALL_BIN} ${WRKINST}/usr/sbin/syslog-ng \
- ${IDIR_SYSLOG_NG}/usr/sbin/
- ${INSTALL_DATA} ./files/syslog-ng.conf \
- ${IDIR_SYSLOG_NG}/etc/syslog-ng/
-
-include ${ADK_TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/syslog-ng/files/syslog-ng.conf b/package/syslog-ng/files/syslog-ng.conf
deleted file mode 100644
index 658abead2..000000000
--- a/package/syslog-ng/files/syslog-ng.conf
+++ /dev/null
@@ -1,16 +0,0 @@
-options {
- chain_hostnames(off);
- sync(0);
-
- # The default action of syslog-ng 1.6.0 is to log a STATS line
- # to the file every 10 minutes. That's pretty ugly after a while.
- # Change it to every 12 hours so you get a nice daily update of
- # how many messages syslog-ng missed (0).
- stats(43200);
-};
-
-source src { unix-stream("/dev/log"); internal(); };
-
-destination messages { file("/var/log/messages"); };
-
-log { source(src); destination(messages); };
diff --git a/package/syslog-ng/files/syslog-ng.conffiles b/package/syslog-ng/files/syslog-ng.conffiles
deleted file mode 100644
index 453ebbe66..000000000
--- a/package/syslog-ng/files/syslog-ng.conffiles
+++ /dev/null
@@ -1 +0,0 @@
-/etc/syslog-ng/syslog-ng.conf
diff --git a/package/syslog-ng/files/syslog-ng.postinst b/package/syslog-ng/files/syslog-ng.postinst
deleted file mode 100644
index 331ddd948..000000000
--- a/package/syslog-ng/files/syslog-ng.postinst
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-. $IPKG_INSTROOT/etc/functions.sh
-add_rcconf syslog_ng NO
diff --git a/package/syslog-ng/files/syslog_ng.init b/package/syslog-ng/files/syslog_ng.init
deleted file mode 100644
index ef39eab76..000000000
--- a/package/syslog-ng/files/syslog_ng.init
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-#PKG syslog-ng
-#INIT 05
-. /etc/rc.conf
-
-case $1 in
-autostop) ;;
-autostart)
- test x"${syslog_ng:-NO}" = x"NO" && exit 0
- test x"$syslog_ng" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start
- exec sh $0 start
- ;;
-start)
- [ -f /etc/syslog-ng/syslog-ng.conf ] || {
- echo "/etc/syslog-ng/syslog-ng.conf does not exist !";
- exit 0;
- };
- /usr/sbin/syslog-ng
- ;;
-stop)
- kill $(pgrep -f /usr/sbin/syslog-ng)
- ;;
-restart)
- sh $0 stop
- sh $0 start
- ;;
-*)
- echo "Usage: $0 {start | stop | restart}"
- exit 1
- ;;
-esac
-exit $?