summaryrefslogtreecommitdiffstats
path: root/abs/extra/community/moblock/PKGBUILD
blob: f6c7e512085bffbab0d0f81fe528451408ffe98e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Contributor: Kevin Edmonds <edmondskevin@hotmail.com>
# Maintainer: Filip Wojciechowski, filip at loka dot pl

pkgname=moblock
pkgver=0.9rc2
pkgrel=8
pkgdesc="Console application that blocks connections from/to hosts listed in a file in peerguardian format"
arch=('i686' 'x86_64')
url="http://moblock.berlios.de/"
license=('GPL')
depends=(libnetfilter_queue iptables)
backup=(etc/moblock/config)
install=moblock.install
source=(http://download.berlios.de/moblock/MoBlock-0.8-i586.tar.bz2 \
        moblock_0.9_rc2.patch \
        MoBlock-nfq.sh.patch \
        moblock_include.patch \
        config \
        moblock-update \
        moblock \
        moblock.logrotate)
md5sums=('199967adb48b153be90db10fe21325c5'
         'e4e33c515677fa53eaca4616591d4e44'
         '1193adccce219d31a7c0540807a4a8e8'
         'b23b5214965df59632de5cec317ddbde'
         '840bb52a99529305e49212a69c9ced8a'
         '49a16feb221d4d912cc7200313517f7b'
         '1bdc949fcff0ce751a5096e489061513'
         'a8285fd3e68043cd8d21993d3dbbf9d4')

build() {
    cd $startdir/src/MoBlock-0.8
    
    # patch to update moblock to the latest cvs version
    patch -Np1 -i ../moblock_0.9_rc2.patch || return 1
    # add IP whitelisting and move configs to a separate conf file
    patch -Np1 -i ../MoBlock-nfq.sh.patch || return 1
    # necessary to make moblock build with recent kernels
    patch -Np1 -i ../moblock_include.patch || return 1
    
    # change the CFLAGS for both i686 and x84_64 builds
    sed -i "s#-Wall -O.*-ffast-math#$CFLAGS#g" Makefile
    
    # build
    make || return 1
    
    #move the files
    install -D -m 755 ./MoBlock-nfq.sh $startdir/pkg/usr/bin/moblock-nfq || return 1
    install -D -m 744 ./moblock $startdir/pkg/usr/bin/moblock || return 1
    install -D -m 755 ../moblock-update $startdir/pkg/usr/bin/moblock-update || return 1
    install -D -m 744 ../moblock $startdir/pkg/etc/rc.d/moblock || return 1
    install -D -m 644 ../config $startdir/pkg/etc/moblock/config || return 1
    install -D -m 644 ../moblock.logrotate $startdir/pkg/etc/logrotate.d/moblock || return 1
}