From 674f57520bb0f4196f8b0f9910ed7ef5019d1834 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Tue, 5 Nov 2019 12:38:38 +0100 Subject: [PATCH] rsyslog: update to 8.1910 - be0ify - disable static - disable new fancy shiny stuff --- rsyslog-6.1.2-0.bee | 30 ----------------------------- rsyslog.be0 | 46 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 30 deletions(-) delete mode 100755 rsyslog-6.1.2-0.bee create mode 100755 rsyslog.be0 diff --git a/rsyslog-6.1.2-0.bee b/rsyslog-6.1.2-0.bee deleted file mode 100755 index d12460f8e..000000000 --- a/rsyslog-6.1.2-0.bee +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/env beesh - -SRCURL[0]="http://www.rsyslog.com/files/download/rsyslog/rsyslog-6.1.2.tar.gz" - -PATCHURL[0]="" - -PGRP=( uncategorized ) - - - -# BEE_CONFIGURE=compat - -# EXCLUDE="" - -mee_patch() { - bee_patch -} - -mee_configure() { - bee_configure -} - -mee_build() { - bee_build -} - -mee_install() { - bee_install -} - diff --git a/rsyslog.be0 b/rsyslog.be0 new file mode 100755 index 000000000..9b3d1a39e --- /dev/null +++ b/rsyslog.be0 @@ -0,0 +1,46 @@ +#!/usr/bin/env beesh + +# BEE_VERSION rsyslog-8.1910.0-1 + +# more info: https://foo.bar.com + +SRCURL[0]="http://www.rsyslog.com/files/download/rsyslog/rsyslog-${PKGVERSION}.tar.gz" + +# PATCHURL+=() + +# build_in_sourcedir + +# sourcesubdir_append src + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + bee_configure \ + --disable-silent-rules \ + --disable-fmhash \ + --disable-fmhttp \ + --disable-default-tests \ + --disable-helgrind \ + --disable-static + +# PS1='xxx ' bash -norc +} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#} + +mee_install_post() { + mkdir -vp ${D}/etc/systemd/system + ln -vs /lib/systemd/system/rsyslog.service ${D}/etc/systemd/system/syslog.service +}