summaryrefslogtreecommitdiff
path: root/community/ebtables/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/ebtables/PKGBUILD')
-rw-r--r--community/ebtables/PKGBUILD51
1 files changed, 0 insertions, 51 deletions
diff --git a/community/ebtables/PKGBUILD b/community/ebtables/PKGBUILD
deleted file mode 100644
index 4bc2b44ba..000000000
--- a/community/ebtables/PKGBUILD
+++ /dev/null
@@ -1,51 +0,0 @@
-# $Id: PKGBUILD 90459 2013-05-12 18:54:00Z seblu $
-# Maintainer: Sébastien Luttringer
-# Contributor: Michal Soltys <soltys@ziu.info>
-
-pkgname=ebtables
-pkgver=2.0.10_4
-pkgrel=4
-pkgdesc='Ethernet bridge filtering utilities'
-arch=('i686' 'x86_64')
-url='http://ebtables.sourceforge.net/'
-depends=('perl' 'bash')
-license=('GPL2')
-backup=("etc/$pkgname.conf")
-# ebtables segfault with --as-needed
-options=('!buildflags')
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-v${pkgver/_/-}.tar.gz"
- "$pkgname.systemd"
- "$pkgname.service")
-md5sums=('506742a3d44b9925955425a659c1a8d0'
- 'b4c329060809e5b290ae49fbd0ad61f2'
- 'baf923443c3b16277e50d60d2e68f534')
-
-build() {
- cd $pkgname-v${pkgver/_/-}
- make CFLAGS='-Wunused -Wall -Werror -Wno-error=unused-but-set-variable'
-}
-
-package() {
- pushd $pkgname-v${pkgver/_/-}
- make install \
- DESTDIR="$pkgdir" \
- LIBDIR=/usr/lib \
- MANDIR=/usr/share/man \
- BINDIR=/usr/bin \
- INITDIR=/etc/rc.d \
- SYSCONFIGDIR=/etc
- popd
- # rm package ebtables rc.d scripts
- rm "$pkgdir/etc/ebtables-config"
- rm -r "$pkgdir/etc/rc.d"
- # systemd
- install -Dm 755 $pkgname.systemd \
- "$pkgdir/usr/lib/systemd/scripts/$pkgname"
- install -Dm 644 $pkgname.service \
- "$pkgdir/usr/lib/systemd/system/$pkgname.service"
- # default config file
- install -Dm 644 /dev/null "$pkgdir/etc/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 et: