From 019aab029adea34f90f2811556b8df162c3e7b46 Mon Sep 17 00:00:00 2001 From: Duane Hughes Date: Tue, 22 Mar 2011 08:30:57 +0000 Subject: main/{liblockfile|logcheck|lockfile-progs}: moving to main branch verified operation, moving to main repo --- main/liblockfile/APKBUILD | 38 +++++++++++++++++++++++++++++++++++++ main/lockfile-progs/APKBUILD | 32 +++++++++++++++++++++++++++++++ main/logcheck/APKBUILD | 30 +++++++++++++++++++++++++++++ main/logcheck/logcheck.cron.d | 9 +++++++++ main/logcheck/logcheck.post-install | 3 +++ main/logcheck/logcheck.pre-install | 5 +++++ 6 files changed, 117 insertions(+) create mode 100644 main/liblockfile/APKBUILD create mode 100644 main/lockfile-progs/APKBUILD create mode 100644 main/logcheck/APKBUILD create mode 100644 main/logcheck/logcheck.cron.d create mode 100644 main/logcheck/logcheck.post-install create mode 100644 main/logcheck/logcheck.pre-install (limited to 'main') diff --git a/main/liblockfile/APKBUILD b/main/liblockfile/APKBUILD new file mode 100644 index 000000000..6f471cb11 --- /dev/null +++ b/main/liblockfile/APKBUILD @@ -0,0 +1,38 @@ +# Contributor: Duane Hughes +# Maintainer: Natanael Copa +pkgname=liblockfile +pkgver=1.08 +pkgrel=0 +pkgdesc="Shared library with NFS-safe locking functions" +url="http://packages.debian.org/sid/liblockfile1" +arch="all" +license="GPL" +depends="" +makedepends= +install= +subpackages="$pkgname-dev $pkgname-doc" +source="http://ftp.debian.org/debian/pool/main/libl/liblockfile/${pkgname}_$pkgver.orig.tar.gz" + +_builddir="$srcdir"/$pkgname-$pkgver + + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man + make -j1 || return 1 +} + +package() { + cd "$_builddir" + + install -d "$pkgdir"/usr/include + install -d "$pkgdir"/usr/bin + install -d "$pkgdir"/usr/lib + install -d "$pkgdir"/usr/share/man + + make -j1 ROOT="$pkgdir" install +} + +md5sums="c24e2dfb4a2aab0263fe5ac1564d305e liblockfile_1.08.orig.tar.gz" diff --git a/main/lockfile-progs/APKBUILD b/main/lockfile-progs/APKBUILD new file mode 100644 index 000000000..a1c5aad9f --- /dev/null +++ b/main/lockfile-progs/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Duane Hughes +pkgname=lockfile-progs +pkgver=0.1.15 +pkgrel=0 +pkgdesc="Programs for locking and unlocking files and mailboxes" +url="http://packages.debian.org/sid/lockfile-progs" +arch="all" +license="GPL" +depends="liblockfile" +makedepends="liblockfile-dev" +install= +subpackages="$pkgname-doc" +source="http://ftp.debian.org/debian/pool/main/l/lockfile-progs/${pkgname}_$pkgver.tar.gz" + +_builddir="$srcdir"/sid + +build() { + cd "$_builddir" + make || return 1 +} + +package() { + cd "$_builddir" + + install -d "$pkgdir"/usr/bin + install -d "$pkgdir"/usr/share/man + install -m 755 "$_builddir"/bin/* "$pkgdir"/usr/bin + install -m 644 "$_builddir"/man/* "$pkgdir"/usr/share/man +} + +md5sums="abfcda83a1868073673f4d78066b8f8a lockfile-progs_0.1.15.tar.gz" diff --git a/main/logcheck/APKBUILD b/main/logcheck/APKBUILD new file mode 100644 index 000000000..e437f2c78 --- /dev/null +++ b/main/logcheck/APKBUILD @@ -0,0 +1,30 @@ +# Contributor: Duane Hughes +# Maintainer: Natanael Copa +pkgname=logcheck +pkgver=1.3.13 +pkgrel=0 +pkgdesc="Bash scripts used to monitor system log files for anomalies" +url="http://packages.debian.org/source/sid/logcheck" +arch="noarch" +license="GPL" +depends="lockfile-progs" +makedepends= +install="$pkgname.pre-install $pkgname.post-install" +subpackages="$pkgname-doc" +source="http://ftp.debian.org/debian/pool/main/l/logcheck/${pkgname}_$pkgver.tar.gz + logcheck.cron.d + " + +_builddir="$srcdir"/$pkgname + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install + + install -D -m 644 "$srcdir"/logcheck.cron.d "$pkgdir"/etc/logcheck/logcheck.cron.sample + install -d "$pkgdir"/usr/share/man + cp -a "$_builddir"/docs/* "$pkgdir"/usr/share/man +} + +md5sums="e2ff14f522bf2e30d5947c85fed44973 logcheck_1.3.13.tar.gz +89be84c722a958659df9a937826cbdc2 logcheck.cron.d" diff --git a/main/logcheck/logcheck.cron.d b/main/logcheck/logcheck.cron.d new file mode 100644 index 000000000..58cd047bb --- /dev/null +++ b/main/logcheck/logcheck.cron.d @@ -0,0 +1,9 @@ +# /etc/cron.d/logcheck: crontab entries for the logcheck package + +PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin +MAILTO=root + +@reboot logcheck if [ -x /usr/sbin/logcheck ]; then nice -n10 /usr/sbin/logcheck -R; fi +2 * * * * logcheck if [ -x /usr/sbin/logcheck ]; then nice -n10 /usr/sbin/logcheck; fi + +# EOF diff --git a/main/logcheck/logcheck.post-install b/main/logcheck/logcheck.post-install new file mode 100644 index 000000000..c3439021c --- /dev/null +++ b/main/logcheck/logcheck.post-install @@ -0,0 +1,3 @@ +#!/bin/sh + +chown -R logcheck /etc/logcheck /var/lock/logcheck /var/lib/logcheck diff --git a/main/logcheck/logcheck.pre-install b/main/logcheck/logcheck.pre-install new file mode 100644 index 000000000..d6ea64154 --- /dev/null +++ b/main/logcheck/logcheck.pre-install @@ -0,0 +1,5 @@ +#!/bin/sh + +addgroup logcheck 2>/dev/null +adduser -S -H -h /dev/null -s /bin/false -D -G logcheck logcheck 2>/dev/null +exit 0 -- cgit v1.2.3