chiark / gitweb /
b9a095f8fbc1fd1a8e21b5ee108703c35c7d88d8
[tripe] / debian / rules
1 #! /usr/bin/make -f
2
3 CDBS = /usr/share/cdbs/1
4
5 include $(CDBS)/rules/debhelper.mk
6 include $(CDBS)/class/autotools.mk
7
8 ###--------------------------------------------------------------------------
9 ### General settings.
10
11 DEB_BUILDDIR = $(CURDIR)/build
12 DEB_MAKE_CHECK_TARGET = check
13
14 ###--------------------------------------------------------------------------
15 ### Correct configuration.
16
17 ## This will need changing on other kernels.
18 default_tunnel = linux
19
20 ## Configuration arguments.
21 DEB_CONFIGURE_EXTRA_FLAGS = \
22         --with-tunnel="$(default_tunnel) slip" \
23         --with-configdir="/etc/tripe" \
24         --with-socketdir="/var/run" \
25         --with-logfile="/var/log/tripe/tripe.log" \
26         --with-pidfile="/var/run/tripectl.pid" \
27         --with-initconfig="/etc/default/tripe"
28
29 ###--------------------------------------------------------------------------
30 ### Python.
31
32 binary-install/python-tripe::
33         dh_pycentral -ppython-tripe
34
35 ###--------------------------------------------------------------------------
36 ### Install the startup scripts.
37
38 install/tripe::
39         cp $(DEB_BUILDDIR)/init/tripe-init debian/tripe.init
40         sed 's/^#\(user\|group\)/\1/' \
41                 $(DEB_SRCDIR)/init/tripe.conf >debian/tripe.default
42         mkdir -p debian/tripe/usr/share/doc/tripe/examples
43         for i in tripe-ipif ipif-peers tripe-upstart greet knock; do \
44           cp $(DEB_BUILDDIR)/contrib/$$i \
45                 debian/tripe/usr/share/doc/tripe/examples; \
46         done
47
48 cleanbuilddir::
49         rm -f debian/tripe.init debian/tripe.default
50
51 ###--------------------------------------------------------------------------
52 ### Install configuration files.
53
54 install/tripe-peer-services::
55         install -m644 $(DEB_SRCDIR)/peerdb/peers.in \
56                 debian/tripe-peer-services/etc/tripe/peers.d/10base
57
58 ###--------------------------------------------------------------------------
59 ### Wireshark plugin.
60
61 ## Grab the version we built against, so we can put it in the dependencies.
62 install/tripe-wireshark::
63         dpkg --status wireshark-common | \
64                 sed -n 's/^Version: */tripe:Wireshark-Version=/p' \
65                 >> debian/tripe-wireshark.substvars
66
67 ## Don't track dependencies for the plugin.  We have it covered already.
68 DEB_DH_SHLIBDEPS_ARGS_tripe-wireshark += -Xwireshark/plugins
69
70 ###----- That's all, folks --------------------------------------------------