diff options
author | Nathan Angelacos <nangel@alpinelinux.org> | 2015-02-24 02:51:01 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2015-02-24 15:53:10 +0000 |
commit | 4f450721c1ca76ac8ca3c04ee4e026d0f2406bd5 (patch) | |
tree | dc7e1d5a36ea2b403220ee0aa1c7b8c68d0e1e00 /main/logtail | |
parent | 48ca78c67e04bf72d19bff98d074cd00072ff1a8 (diff) | |
download | aports-4f450721c1ca76ac8ca3c04ee4e026d0f2406bd5.tar.bz2 aports-4f450721c1ca76ac8ca3c04ee4e026d0f2406bd5.tar.xz |
main/logtail
New package - sourceforge logtail-v3 C re-implementation
of original psionic.com logtail
Signed-off-by: Leonardo Arena <rnalrd@alpinelinux.org>
Diffstat (limited to 'main/logtail')
-rw-r--r-- | main/logtail/APKBUILD | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/main/logtail/APKBUILD b/main/logtail/APKBUILD new file mode 100644 index 0000000000..9dac83c7b3 --- /dev/null +++ b/main/logtail/APKBUILD @@ -0,0 +1,47 @@ +# Maintainer: Nathan Angelacos <nangel@alpinelinux.org> +# Bit 'o history here: +# In 1997 Craig Rowland of psionic.com released a package called LogSentry +# http://www.psionic.com/downloads/logsentry-1.1.1.tar.gz +# One of the tools was "logtail". It was written in C. +# Cisco bought Psionic, and took logsentry offline. +# Debian supports a Perl re-implementation (logtail2) +# https://packages.debian.org/unstable/logtail +# This is the sourceforge re-re-implementation in C, and the +# offical package project name is 'logtail-v3' +# At the risk of being technically incorrect we call this package logtail +pkgname=logtail +pkgver=3.21 +pkgrel=0 +pkgdesc="Print new lines in log file since the last run (sf.net $pkgname-v3 ver)" +url="http://logtail-v3.sourceforge.net/" +arch="all" +license="GPL2" +depends="" +makedepends="" +subpackages="" +source="http://downloads.sourceforge.net/$pkgname-v3/$pkgname-v$pkgver.zip" + + +prepare() { + local i + cd "$srcdir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p0 -i "$srcdir"/$i || return 1;; + esac + done +} + +build () { + cd "$srcdir" + cc -D_OS_UNIX -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -o logtail logtail-v$pkgver.c +} + +package() { + cd "$srcdir" + install -Dm755 logtail "$pkgdir"/usr/bin/logtail || return 1 +} + +md5sums="2616009bd254172134f39e8c39e7c0c6 logtail-v3.21.zip" +sha256sums="261f7eae055333d9c0277f4c79eb582c2f0b4cfb2b5f6b4e4329e543a846daaf logtail-v3.21.zip" +sha512sums="084d85db26b5f94d3a187d47ca31e91d39ba789eb3e19dfcbda406a693037bb8316419e37ad7ffdf37c034476cc624e8a28092fcea18190032605eae98891127 logtail-v3.21.zip" |