/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Teddy Hogeborn
  • Date: 2008-09-07 01:20:43 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080907012043-w05a7qh6258eqh27
* Makefile: Clearly separate "local" install variable settings from
            "package" variable settings.
  (INITRAMFSTOOLS): New variable.
  (install-server): Use $(DESTDIR) to install init script and
                    /etc/default file.
  (install-client): Use $(INITRAMFSTOOLS).
  (uninstall-client): - '' -
  (purge-server): Use $(DESTDIR).

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
#COVERAGE=--coverage
14
14
OPTIMIZE=-Os
15
15
LANGUAGE=-std=gnu99
16
 
# PREFIX=/usr/local
 
16
 
 
17
## Use these settings for a traditional /usr/local install
 
18
# PREFIX=$(DESTDIR)/usr/local
 
19
# CONFDIR=$(PREFIX)/lib/mandos
 
20
# KEYDIR=$(PREFIX)/lib/mandos/keys
 
21
# MANDIR=$(PREFIX)/man
 
22
# INITRAMFSTOOLS=/etc/initramfs-tools
 
23
 
17
24
PREFIX=$(DESTDIR)/usr
18
 
# CONFDIR=/usr/local/lib/mandos
19
25
CONFDIR=$(DESTDIR)/etc/mandos
20
 
# KEYDIR=/usr/local/lib/mandos/keys
21
26
KEYDIR=$(DESTDIR)/etc/keys/mandos
22
 
# MANDIR=/usr/local/man
23
 
MANDIR=$(DESTDIR)/usr/share/man
 
27
MANDIR=$(PREFIX)/share/man
 
28
INITRAMFSTOOLS=$(DESTDIR)/usr/share/initramfs-tools
24
29
 
25
30
GNUTLS_CFLAGS=$(shell libgnutls-config --cflags)
26
31
GNUTLS_LIBS=$(shell libgnutls-config --libs)
34
39
        $(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(GPGME_CFLAGS)
35
40
LDFLAGS=$(COVERAGE)
36
41
 
37
 
# Commands to format a DocBook refentry document into a manual page
 
42
# Commands to format a DocBook <refentry> document into a manual page
38
43
DOCBOOKTOMAN=cd $(dir $<); xsltproc --nonet --xinclude \
39
44
        --param man.charmap.use.subset          0 \
40
45
        --param make.year.ranges                1 \
44
49
         /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl \
45
50
        $(notdir $<); \
46
51
        $(MANPOST) $(notdir $@)
47
 
# DocBook-to-man post-processing to fix a \n escape bug
 
52
# DocBook-to-man post-processing to fix a '\n' escape bug
48
53
MANPOST=sed --in-place --expression='s,\\\\en,\\en,g;s,\\n,\\en,g'
49
54
 
50
55
PLUGINS=plugins.d/password-prompt plugins.d/mandos-client
140
145
                mandos.conf
141
146
        install --mode=u=rw --target-directory=$(CONFDIR) \
142
147
                clients.conf
143
 
        install --mode=u=rwx,go=rx init.d-mandos /etc/init.d/mandos
144
 
        install --mode=u=rw,go=r default-mandos /etc/default/mandos
 
148
        install --mode=u=rwx,go=rx init.d-mandos \
 
149
                $(DESTDIR)/etc/init.d/mandos
 
150
        install --mode=u=rw,go=r default-mandos \
 
151
                $(DESTDIR)/etc/default/mandos
145
152
        update-rc.d mandos defaults
146
153
        gzip --best --to-stdout mandos.8 \
147
154
                > $(MANDIR)/man8/mandos.8.gz
150
157
        gzip --best --to-stdout mandos-clients.conf.5 \
151
158
                > $(MANDIR)/man5/mandos-clients.conf.5.gz
152
159
 
153
 
install-client: all doc /usr/share/initramfs-tools/hooks/.
 
160
install-client: all doc $(INITRAMFSTOOLS)/hooks/.
154
161
        install --directory $(PREFIX)/lib/mandos $(CONFDIR) \
155
162
                $(MANDIR)/man8
156
163
        install --directory --mode=u=rwx $(KEYDIR)
176
183
                --target-directory=$(PREFIX)/lib/mandos/plugins.d \
177
184
                plugins.d/usplash
178
185
        install initramfs-tools-hook \
179
 
                /usr/share/initramfs-tools/hooks/mandos
 
186
                $(INITRAMFSTOOLS)/hooks/mandos
180
187
        install initramfs-tools-hook-conf \
181
 
                /usr/share/initramfs-tools/conf-hooks.d/mandos
 
188
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos
182
189
        install initramfs-tools-script \
183
 
                /usr/share/initramfs-tools/scripts/local-top/mandos
 
190
                $(INITRAMFSTOOLS)/scripts/local-top/mandos
184
191
        install --mode=u=rw,go=r plugin-runner.conf $(CONFDIR)
185
192
        gzip --best --to-stdout mandos-keygen.8 \
186
193
                > $(MANDIR)/man8/mandos-keygen.8.gz
209
216
# Refuse to uninstall client if /etc/crypttab is explicitly configured
210
217
# to use it.
211
218
        ! grep --regexp='^ *[^ #].*keyscript=[^,=]*/mandos/' \
212
 
                /etc/crypttab
 
219
                $(DESTDIR)/etc/crypttab
213
220
        -rm --force $(PREFIX)/sbin/mandos-keygen \
214
221
                $(PREFIX)/lib/mandos/plugin-runner \
215
222
                $(PREFIX)/lib/mandos/plugins.d/password-prompt \
216
223
                $(PREFIX)/lib/mandos/plugins.d/mandos-client \
217
224
                $(PREFIX)/lib/mandos/plugins.d/usplash \
218
 
                /usr/share/initramfs-tools/hooks/mandos \
219
 
                /usr/share/initramfs-tools/conf-hooks.d/mandos \
220
 
                /usr/share/initramfs-tools/scripts/local-top/mandos \
 
225
                $(INITRAMFSTOOLS)/hooks/mandos \
 
226
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos \
 
227
                $(INITRAMFSTOOLS)/scripts/local-top/mandos \
221
228
                $(MANDIR)/man8/plugin-runner.8mandos.gz \
222
229
                $(MANDIR)/man8/mandos-keygen.8.gz \
223
230
                $(MANDIR)/man8/password-prompt.8mandos.gz \
233
240
 
234
241
purge-server: uninstall-server
235
242
        -rm --force $(CONFDIR)/mandos.conf $(CONFDIR)/clients.conf \
236
 
                /etc/default/mandos /etc/init.d/mandos \
237
 
                /var/run/mandos.pid
 
243
                $(DESTDIR)/etc/default/mandos \
 
244
                $(DESTDIR)/etc/init.d/mandos \
 
245
                $(DESTDIR)/var/run/mandos.pid
238
246
        -rmdir $(CONFDIR)
239
247
 
240
248
purge-client: uninstall-client