unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 91bef045ab4e0903c457bbf3f1765bc6b694d400 2023 bytes (raw)
name: man/Makefile.local 	 # note: path name is non-authoritative(*)

 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
 
# -*- Makefile -*-

dir := man

# this variable seems to be needed to prevent lazy evaluation causing
# problems with $(dir) changing values.
MAIN_PAGE := $(dir)/man1/notmuch.1

MAN1 := \
	$(MAIN_PAGE) \
	$(dir)/man1/notmuch-compact.1 \
	$(dir)/man1/notmuch-config.1 \
	$(dir)/man1/notmuch-count.1 \
	$(dir)/man1/notmuch-dump.1 \
	$(dir)/man1/notmuch-restore.1 \
	$(dir)/man1/notmuch-insert.1 \
	$(dir)/man1/notmuch-new.1 \
	$(dir)/man1/notmuch-reply.1 \
	$(dir)/man1/notmuch-search.1 \
	$(dir)/man1/notmuch-show.1 \
	$(dir)/man1/notmuch-tag.1

MAN5 := $(dir)/man5/notmuch-hooks.5
MAN7 := $(dir)/man7/notmuch-search-terms.7

GENERATED_MAN := $(MAIN_PAGE) $(MAN7)

MAN1_GZ := $(addsuffix .gz,$(MAN1))
MAN5_GZ := $(addsuffix .gz,$(MAN5))
MAN7_GZ := $(addsuffix .gz,$(MAN7))

MAN_SOURCE := $(MAN1) $(MAN5) $(MAN7)
MAN_BACKUP := $(addsuffix .bak,$(MAN_SOURCE))
COMPRESSED_MAN := $(MAN1_GZ) $(MAN5_GZ) $(MAN7_GZ)

%.gz: %
	gzip --stdout $^ > $@

POD2MAN_RECIPE = mkdir -p $(@D) && \
		 pod2man --section=$(subst .,,$(suffix $@)) \
			 --center="Notmuch Documentation" --release=${VERSION} $< > $@

$(dir)/man1/%.1: $(dir)/../pod/%.pod
	$(POD2MAN_RECIPE)

$(dir)/man5/%.5: $(dir)/../pod/%.pod
	$(POD2MAN_RECIPE)

$(dir)/man7/%.7: $(dir)/../pod/%.pod
	$(POD2MAN_RECIPE)

CLEAN := $(CLEAN) $(NROFF7)

.PHONY: install-man update-man-versions

install-man: $(COMPRESSED_MAN)
	mkdir -p "$(DESTDIR)$(mandir)/man1"
	mkdir -p "$(DESTDIR)$(mandir)/man5"
	mkdir -p "$(DESTDIR)$(mandir)/man7"
	install -m0644 $(MAN1_GZ) $(DESTDIR)/$(mandir)/man1
	install -m0644 $(MAN5_GZ) $(DESTDIR)/$(mandir)/man5
	install -m0644 $(MAN7_GZ) $(DESTDIR)/$(mandir)/man7
	cd $(DESTDIR)/$(mandir)/man1 && ln -sf notmuch.1.gz notmuch-setup.1.gz

update-man-versions: $(MAN_SOURCE)
	for file in $(MAN_SOURCE); do \
	    cp $$file $$file.bak ; \
	    sed "s/^.TH NOTMUCH\([^[:blank:]]*\) \([1-9]\) .*$$/.TH NOTMUCH\1 \2 ${DATE} \"Notmuch ${VERSION}\"/" \
	        < $$file.bak > $$file; \
	done

CLEAN := $(CLEAN) $(COMPRESSED_MAN) $(MAN_BACKUP) $(GENERATED_MAN)

debug log:

solving 91bef04 ...
found 91bef04 in https://yhetil.org/notmuch/1388921950-5017-3-git-send-email-david@tethera.net/
found 57910b7 in https://yhetil.org/notmuch.git/
preparing index
index prepared:
100644 57910b76ba6a32194740aa309d6d2a43fc9a3537	man/Makefile.local

applying [1/1] https://yhetil.org/notmuch/1388921950-5017-3-git-send-email-david@tethera.net/
diff --git a/man/Makefile.local b/man/Makefile.local
index 57910b7..91bef04 100644

Checking patch man/Makefile.local...
Applied patch man/Makefile.local cleanly.

index at:
100644 91bef045ab4e0903c457bbf3f1765bc6b694d400	man/Makefile.local

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).