summaryrefslogtreecommitdiff
path: root/community/ipset
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-01-25 00:06:28 -0800
committerroot <root@rshg054.dnsready.net>2013-01-25 00:06:28 -0800
commitef71629a65f6e8052d66775f07b079bf08322476 (patch)
treeedd2ad98fa5697fc7a95e3eed0a8902656e55fde /community/ipset
parent570e3637e2a4ba372dabbbbb8953d7b4ccdcaa39 (diff)
Fri Jan 25 00:06:28 PST 2013
Diffstat (limited to 'community/ipset')
-rw-r--r--community/ipset/PKGBUILD23
-rw-r--r--community/ipset/ipset.systemd3
2 files changed, 10 insertions, 16 deletions
diff --git a/community/ipset/PKGBUILD b/community/ipset/PKGBUILD
index 98b2305c9..b9835f0e9 100644
--- a/community/ipset/PKGBUILD
+++ b/community/ipset/PKGBUILD
@@ -1,25 +1,21 @@
-# $Id: PKGBUILD 80651 2012-11-28 16:13:35Z seblu $
+# $Id: PKGBUILD 82785 2013-01-24 12:55:11Z seblu $
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
pkgname=ipset
pkgver=6.16.1
-pkgrel=1
+pkgrel=2
pkgdesc='Administration tool for IP sets'
arch=('i686' 'x86_64')
url='http://ipset.netfilter.org'
license=('GPL2')
-depends=('libmnl')
-backup=("etc/$pkgname.conf" "etc/conf.d/$pkgname")
+depends=('libmnl' 'bash')
+backup=("etc/$pkgname.conf")
options=('!libtool')
source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2"
- "$pkgname.conf"
- "$pkgname.rc"
"$pkgname.systemd"
"$pkgname.service")
md5sums=('9fd70c825f052db7dc9d5ba0562b7083'
- '3e606a2823a700b4e9c5f17511a6f6a5'
- 'de89b054d967036e08b13bc6a7235286'
- 'dfc3105b89ed41fc4a1feb4f4f13f2a3'
+ '7daa4f163eef9db216cb4c428e0342a3'
'b032241b96b5802975fe4321cc511c6b')
build() {
@@ -34,11 +30,10 @@ package() {
# install doc
install -dm755 "$pkgdir/usr/share/doc/$pkgname"
install -m644 README UPGRADE ChangeLog "$pkgdir/usr/share/doc/$pkgname"
+ # install pkgconfig file
+ install -Dm644 lib/libipset.pc "$pkgdir/usr/lib/pkgconfig/libipset.pc"
popd
- # install initscripts
- install -Dm 755 $pkgname.rc "$pkgdir/etc/rc.d/$pkgname"
- install -Dm 644 $pkgname.conf "$pkgdir/etc/conf.d/$pkgname"
- # install systemd service
+ # systemd
install -Dm 755 $pkgname.systemd \
"$pkgdir/usr/lib/systemd/scripts/$pkgname"
install -Dm 644 $pkgname.service \
@@ -47,4 +42,4 @@ package() {
install -Dm 644 /dev/null "$pkgdir/etc/$pkgname.conf"
}
-# vim:set ts=2 sw=2 ft=sh et:
+# vim:set ts=2 sw=2 et:
diff --git a/community/ipset/ipset.systemd b/community/ipset/ipset.systemd
index 92397f3a7..c28086322 100644
--- a/community/ipset/ipset.systemd
+++ b/community/ipset/ipset.systemd
@@ -1,13 +1,12 @@
#!/bin/bash
-. /etc/conf.d/ipset
+CONFIG_FILE='/etc/ipset.conf'
case $1 in
start)
ipset restore < "$CONFIG_FILE"
;;
stop)
- [[ $SAVE_ON_STOP =~ [yY][eE][sS] ]] && $0 save
ipset destroy
;;
save)