From 7dc4bb1b50d0a5c1f8cf5268124a620fe14edf9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Mas=C5=82owski?= Date: Sun, 18 Nov 2012 10:12:04 +0100 Subject: Remove metalog. extra has a newer version, probably the only change we did was adding it to base, while it's not needed for typical systems using systemd. --- libre/metalog/PKGBUILD | 43 ------------------------------------------- libre/metalog/metalog | 40 ---------------------------------------- libre/metalog/metalog.confd | 8 -------- 3 files changed, 91 deletions(-) delete mode 100755 libre/metalog/PKGBUILD delete mode 100755 libre/metalog/metalog delete mode 100755 libre/metalog/metalog.confd (limited to 'libre/metalog') diff --git a/libre/metalog/PKGBUILD b/libre/metalog/PKGBUILD deleted file mode 100755 index 41a570b7c..000000000 --- a/libre/metalog/PKGBUILD +++ /dev/null @@ -1,43 +0,0 @@ -# $Id: PKGBUILD 137711 2011-09-10 13:12:33Z pierre $ -# Maintainer: juergen -# Contributor: Tom Newsom - -pkgname=metalog -pkgver=2.0 -pkgrel=3 -pkgdesc="Metalog is a modern replacement for syslogd and klogd" -url="http://metalog.sourceforge.net" -license=('GPL') -arch=('i686' 'x86_64' 'mips64el') -depends=('pcre') -groups=('base') -provides=('logger') -replaces=('syslog-ng') -conflicts=('syslog-ng') -backup=('etc/metalog.conf' 'etc/conf.d/metalog') -source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-2.tar.xz" - 'metalog' 'metalog.confd') -md5sums=('e948d10d780205eae17645c89aee1361' - 'cdd1d34eedbfbc2d9e659bf0a0f58f56' - '86bccd5a02996921e29eff8a0394d11f') - -build() { - cd $srcdir/$pkgname-2 - ./configure --prefix=/usr --sysconfdir=/etc - make -} - -check() { - cd $srcdir/$pkgname-2 - make check -} - -package() { - cd $srcdir/$pkgname-2 - make DESTDIR=$pkgdir install - install -D -m755 $srcdir/metalog $pkgdir/etc/rc.d/metalog - install -D -m644 $srcdir/metalog.confd $pkgdir/etc/conf.d/metalog - install -D -m644 metalog.conf $pkgdir/etc/metalog.conf - -} - diff --git a/libre/metalog/metalog b/libre/metalog/metalog deleted file mode 100755 index d30f47289..000000000 --- a/libre/metalog/metalog +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash - -# source application-specific settings -[ -f /etc/conf.d/metalog ] && . /etc/conf.d/metalog - -. /etc/rc.conf -. /etc/rc.d/functions - -PID=`pidof -o %PPID /usr/sbin/metalog` -case "$1" in - start) - stat_busy "Starting Metalog" - [ -z "$PID" ] && /usr/sbin/metalog -B $METALOG_OPTS 2>&1 - if [ $? -gt 0 ]; then - stat_fail - else - echo $PID > /var/run/metalog.pid - add_daemon metalog - stat_done - fi - ;; - stop) - stat_busy "Stopping Metalog" - [ ! -z "$PID" ] && kill $PID &>/dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon metalog - stat_done - fi - ;; - restart) - $0 stop - sleep 1 - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac -exit 0 diff --git a/libre/metalog/metalog.confd b/libre/metalog/metalog.confd deleted file mode 100755 index 3d76ffab3..000000000 --- a/libre/metalog/metalog.confd +++ /dev/null @@ -1,8 +0,0 @@ -# -# Parameters to be passed to metalog -# - -# NOTE: Since v.0.7, metalog disables buffering by default. -# Add '-a' if you want buffering. - -METALOG_OPTS="" -- cgit v1.2.3-2-g168b