-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrules.deb.in
134 lines (115 loc) · 3.98 KB
/
rules.deb.in
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#!/usr/bin/make -f
# Samhain debian/rules
# GNU copyright 20001 to 2003 by Javier Fernandez-Sanguino
# based on
# Sample debian/rules that uses debhelper.
# GNU copyright 1997 to 1999 by Joey Hess.
# Modified to use mydefargs by Rainer Wichmann.
#
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# This is the debhelper compatability version to use.
export DH_COMPAT=4
package=@install_name@
# CAVEAT: including the --enable-base= option is for packages to be
# distributed INTERNALLY on your network, NOT for packages
# to be distributed to THIRD PARTIES
build: build-stamp
build-stamp:
dh_testdir
@top_srcdir@/configure @mydefargs@
$(MAKE)
echo '#!/bin/sh' > ./sstrip
echo 'echo "*** SSTRIP DISABLED ***"' >> ./sstrip
if ! test x$(PASSWORD) = x; then \
if test -f samhain_setpwd; then \
./samhain_setpwd samhain new $(PASSWORD); \
rm samhain; \
mv samhain.new samhain; \
fi; \
fi
touch build-stamp
clean:
dh_testdir
dh_testroot
rm -f build-stamp
-[ -f Makefile ] && $(MAKE) distclean
dh_clean
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
# Fix the permissions
#chmod o-rX `pwd`/debian/tmp/var/log/samhain \
# `pwd`/debian/tmp/var/run/samhain \
# `pwd`/debian/tmp/var/lib/samhain \
# `pwd`/debian/tmp/etc/samhain
# $(MAKE) install install-boot DESTDIR=`pwd`/debian/tmp
$(MAKE) install install-boot DESTDIR=`pwd`/debian/@install_name@
# However, remove the rc.d links
-rm -rf `pwd`/debian/tmp/etc/rc?.d
# install -m 755 encode `pwd`/debian/tmp/usr/bin/samhain_encode
# install -m 644 profiles/debianlinux_i386/samhainrc `pwd`/debian/tmp@myconffile@
# install -m 644 debian/samhain.logrotate `pwd`/debian/tmp/etc/logrotate.d/samhain
# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.
# Build architecture-dependent files here.
binary-arch: build install
# dh_testversion
dh_testdir
dh_testroot
dh_installdebconf
dh_installdocs
[ -f debian/@install_name@/usr/share/doc/@install_name@/MANUAL-2_4.html.tar ] && \
cd debian/@install_name@/usr/share/doc/@install_name@ && \
tar xf MANUAL-2_4.html.tar && mv MANUAL-2_4 manual.html && \
rm -f MANUAL-2_4.html.tar && \
mv MANUAL-2_4.pdf manual.pdf
dh_installexamples @top_srcdir@/scripts/example_pager.pl \
@top_srcdir@/scripts/example_sms.pl \
@top_srcdir@/scripts/concat.pl \
@top_srcdir@/scripts/samhain.logrotator \
@top_srcdir@/scripts/samhainadmin.pl \
@top_srcdir@/scripts/check_samhain.pl \
@top_srcdir@/yulerc.template \
@top_srcdir@/samhainrc.linux
dh_installmenu
dh_installinit -- defaults 19
[ -f debian/@[email protected] ] && \
cd debian && \
cat @[email protected] | \
sed 's%/etc/init.d/@install_name@ start%:%' > postinst.tmp && \
mv postinst.tmp @[email protected]
[ -f debian/@[email protected] ] && \
cd debian && \
cat @[email protected] | \
sed 's%invoke-rc.d @install_name@ start%:%' > postinst.tmp && \
mv postinst.tmp @[email protected]
[ -f debian/@[email protected] ] && \
cd debian && \
cat @[email protected] | \
sed 's%/etc/init.d/@install_name@ stop%/etc/init.d/@install_name@ stop || echo service @install_name@ already stopped%' > prerm.tmp && \
mv prerm.tmp @[email protected]
[ -f debian/@[email protected] ] && \
cd debian && \
cat @[email protected] | \
sed 's%invoke-rc.d @install_name@ stop%invoke-rc.d @install_name@ stop || echo service @install_name@ already stopped%' > prerm.tmp && \
mv prerm.tmp @[email protected]
# dh_installmanpages
dh_installchangelogs @top_srcdir@/docs/Changelog
dh_link
dh_strip
dh_compress
dh_fixperms
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
define checkdir
test -f debian/rules
endef
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install