File: generate_mans.mak

package info (click to toggle)
shadow 1%3A4.2-3%2Bdeb8u4
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 13,868 kB
  • ctags: 2,298
  • sloc: ansic: 29,890; xml: 11,397; sh: 1,602; makefile: 1,271; yacc: 815; perl: 59
file content (57 lines) | stat: -rw-r--r-- 1,402 bytes parent folder | download | duplicates (3)
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
if USE_PAM
PAM_COND=pam
else
PAM_COND=no_pam
endif
if SHADOWGRP
SHADOWGRP_COND=gshadow
else
SHADOWGRP_COND=no_gshadow
endif
if WITH_TCB
TCB_COND=tcb
else
TCB_COND=no_tcb
endif

if USE_SHA_CRYPT
SHA_CRYPT_COND=sha_crypt
else
SHA_CRYPT_COND=no_sha_crypt
endif

if ENABLE_SUBIDS
SUBIDS_COND=subids
else
SUBIDS_COND=no_subids
endif

if ENABLE_REGENERATE_MAN
%.xml-config: %.xml
	if grep -q SHADOW-CONFIG-HERE $<; then \
		sed -e 's/^<!-- SHADOW-CONFIG-HERE -->/<!ENTITY % config SYSTEM "config.xml">%config;/' $< > $@; \
	else \
		sed -e 's/^\(<!DOCTYPE .*docbookx.dtd"\)>/\1 [<!ENTITY % config SYSTEM "config.xml">%config;]>/' $< > $@; \
	fi

man1/% man3/% man5/% man8/%: %.xml-config Makefile config.xml
	$(XSLTPROC) --stringparam profile.condition "$(PAM_COND);$(SHADOWGRP_COND);$(TCB_COND);$(SHA_CRYPT_COND);$(SUBIDS_COND)" \
	            --param "man.authors.section.enabled" "0" \
	            --stringparam "man.output.base.dir" "" \
	            --param "man.output.in.separate.dir" "1" \
	            -nonet http://docbook.sourceforge.net/release/xsl/current/manpages/profile-docbook.xsl $<

clean-local:
	for d in man1 man3 man5 man8; do [ -d $$d ] && rmdir $$d; done

else
$(man_MANS):
	@echo you need to run configure with --enable-man to generate man pages
	@false
endif

man8/grpconv.8 man8/grpunconv.8 man8/pwunconv.8: man8/pwconv.8

man3/getspnam.3: man3/shadow.3

man8/vigr.8: man8/vipw.8