summaryrefslogtreecommitdiff
path: root/community/ulogd/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/ulogd/PKGBUILD
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/ulogd/PKGBUILD')
-rw-r--r--community/ulogd/PKGBUILD60
1 files changed, 0 insertions, 60 deletions
diff --git a/community/ulogd/PKGBUILD b/community/ulogd/PKGBUILD
deleted file mode 100644
index aa519f85c..000000000
--- a/community/ulogd/PKGBUILD
+++ /dev/null
@@ -1,60 +0,0 @@
-# $Id: PKGBUILD 90538 2013-05-13 00:36:03Z seblu $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Maintainer: Sébastien Luttringer
-# Contributor: Dale Blount <dale@archlinux.org>
-# Contributor: Sergej Pupykin <ps@lx-ltd.ru>
-
-pkgname=ulogd
-pkgver=2.0.2
-pkgrel=2
-pkgdesc='Userspace Packet Logging for netfilter'
-arch=('i686' 'x86_64')
-url='http://www.netfilter.org/projects/ulogd/index.html'
-license=('GPL2')
-depends=('libmnl' 'libnfnetlink')
-backup=('etc/ulogd.conf')
-makedepends=('libmariadbclient'
- 'libnetfilter_acct'
- 'libnetfilter_conntrack'
- 'libnetfilter_log'
- 'libpcap'
- 'libdbi'
- 'postgresql-libs'
- 'sqlite')
-optdepends=("${makedepends[@]}")
-options=('!libtool')
-source=("ftp://ftp.netfilter.org/pub/$pkgname/$pkgname-$pkgver.tar.bz2"
- "$pkgname.logrotate"
- "$pkgname.conf"
- "$pkgname.service")
-md5sums=('660516de4b5b1e110c12dae414619e0f'
- 'dd32eeee0949adff4188544419acd17e'
- 'c21531312f95e790ed19aa267a17d35a'
- '092d72209e30c132e0a08112e4062772')
-
-
-build() {
- cd $pkgname-$pkgver
- ./configure \
- --prefix=/usr \
- --sbindir=/usr/bin \
- --sysconfdir=/etc \
- --with-mysql \
- --with-pgsql \
- --with-dbi
- make
-}
-
-package() {
- cd $pkgname-$pkgver
- make DESTDIR="$pkgdir" install
- install -dm755 "$pkgdir/usr/share/doc/ulogd"
- install -Dm644 ulogd.conf "$pkgdir/usr/share/doc/ulogd/ulogd.conf"
- install -m644 doc/*.{table,sql} "$pkgdir/usr/share/doc/ulogd"
- cd "$srcdir"
- install -Dm644 $pkgname.service "$pkgdir/usr/lib/systemd/system/$pkgname.service"
- install -Dm644 $pkgname.logrotate "$pkgdir/etc/logrotate.d/$pkgname"
- install -Dm644 $pkgname.conf "$pkgdir/etc/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 et: