dot/gpg.conf.m4, dot/gpg-agent.conf, Makefile: Adopt GnuPG configuration.
[profile] / Makefile
1 ## -*-makefile-*-
2
3 all:
4 .PHONY: all
5
6 clean::
7 .PHONY: clean
8
9 .SECONDEXPANSION: #sorry
10
11 ###--------------------------------------------------------------------------
12 ### Utilities.
13
14 ##
15 quote = '$(subst ','\'',$1)'#'
16
17 ## Suss out how to print stuff.
18 print = printf "%s" $(call quote,$1)
19
20 ## Looking configuration things up.
21 mdw-conf = $(shell bin/mdw-conf "$1" "$2")
22
23 ## Checking symlink targets.
24 symlink-ok-p = $(shell \
25 case $$(readlink 2>/dev/null $1) in ($2) echo t ;; esac)
26
27 ## Silent rules machinery.
28 V = 0
29 V_AT = $(V_AT_$V)
30 V_AT_0 = @
31 v_print = $(call v_print_$V,$1,$2)
32 v_print_0 = \
33 printf " %-8s %s\n" "$1" $(call quote,$(patsubst $(HOME)/%,~/%,$2));
34 v_tag = $(V_AT)$(call v_print_$V,$1,$@)
35
36 ## Making directories.
37 %/:; $(call v_tag,MKDIR)mkdir -p $@
38
39 ## Hack.
40 relax =
41
42 ###--------------------------------------------------------------------------
43 ### Configuration.
44
45 ## Figure out where I am.
46 HERE := $(shell pwd)
47
48 ## Decide on how to fetch things from URLs.
49 ifeq ($(shell (curl >/dev/null 2>&1 --version || [ $$? -eq 2 ]) && echo t),t)
50 get-url = curl -fs -o $1 $2
51 else
52 get-url = wget -q -O $1 $2
53 endif
54
55 ## Which Emacs should I use?
56 EMACS := $(shell \
57 emacs=nil; \
58 for i in emacs24 emacs23 emacs22 emacs21 emacs; do \
59 if type >/dev/null 2>&1 $$i; then emacs=$$i; break; fi; \
60 done; \
61 echo $$emacs)
62
63 ## Whence to obtain externally hosted stuff.
64 REPO = https://ftp.distorted.org.uk/u/mdw/profile
65
66 ## Additional local configuration.
67 -include local.mk
68
69 ###--------------------------------------------------------------------------
70 ### Some utility rules.
71
72 _force:
73 .PHONY: _force
74
75 ###--------------------------------------------------------------------------
76 ### Emacs.
77
78 ifneq ($(EMACS),nil)
79
80 EMACSLIB = $(HOME)/lib/emacs
81
82 EMACS_VERSION := $(shell $(EMACS) 2>&1 -Q --batch --eval \
83 '(message "%s %s" emacs-major-version emacs-minor-version)' | \
84 tail -n1)
85 emacs-version-p = $(shell set -- $(EMACS_VERSION); \
86 if [ $$1 -gt $1 ] || ([ $$1 -eq $1 ] && [ $$2 -ge $2 ]); then \
87 echo t; \
88 fi)
89
90 ELISP += make-regexp ew-hols
91 ELISP += mdw-gnus-patch
92 ELISP += mdw-multiple-cursors
93 ELISP += git git-blame vc-git stgit quilt
94
95 ifeq ($(call emacs-version-p,24,3),t)
96 ELISP += bracketed-paste
97 endif
98
99 ELISP += dot-emacs
100 dot-emacs_DEPS = make-regexp
101
102 SCRIPTLINKS += emacsclient-hack movemail-hack sendmail-hack
103 SCRIPTLINKS += aspell-hack emerge-hack wakey.sh
104
105 %.elc: %.el $$(foreach e, $$($$*_DEPS), $$(DEP_$$e))
106 $(call v_tag,EMACS)if ! $(EMACS) >$*.build-log 2>&1 \
107 -L el/ -L $(EMACSLIB) \
108 --batch --no-site-file \
109 --eval '(kill-emacs (if (byte-compile-file "$<") 0 2))'; then \
110 cat $*.build-log; exit 2; \
111 fi
112
113 LOCAL_ELISP = $(filter $(notdir $(wildcard el/*.el)), \
114 $(addsuffix .el, $(ELISP)))
115 $(foreach e, $(LOCAL_ELISP), \
116 $(eval DEP_$(basename $e) = $(EMACSLIB)/$(e:.el=.elc)))
117 $(addprefix $(EMACSLIB)/, $(LOCAL_ELISP)): $(EMACSLIB)/%: el/% | $(EMACSLIB)/
118 $(call v_tag,SYMINK) \
119 rm -f $@.new && \
120 ln -s $(HERE)/$< $@.new && \
121 mv $@.new $@
122
123 REMOTE_ELISP = $(filter-out $(notdir $(wildcard el/*.el)), \
124 $(addsuffix .el, $(ELISP)))
125 $(foreach e, $(REMOTE_ELISP), \
126 $(eval DEP_$(basename $e) = $(if $(shell \
127 if $(EMACS) >/dev/null 2>&1 --no-site-file -q --batch \
128 --eval ' \
129 (progn \
130 (kill-emacs (condition-case nil \
131 (progn (load-library "$e") 0) \
132 (error 1))))'; then \
133 echo t; \
134 fi),, $(EMACSLIB)/$(e:.el=.elc))))
135 $(addprefix $(EMACSLIB)/, $(REMOTE_ELISP)): $(EMACSLIB)/%: | $(EMACSLIB)/
136 $(call v_tag,FETCH) \
137 $(call get-url,$@.new,$(REPO)/$*) && \
138 mv $@.new $@
139
140 DOTLINKS += .emacs .emacs-calc .vm .gnus.el .ercrc.el
141
142 all: $(foreach e, $(ELISP), $(DEP_$e))
143 $(foreach e, $(ELISP), $(eval _emacs.$e: $(EMACSLIB)/$e.elc))
144
145 endif
146
147 ###--------------------------------------------------------------------------
148 ### Other simpler things.
149
150 $(HOME)/.mdw.conf:
151 $(call v_tag,COPY)cp mdw.conf $@.new && mv $@.new $@
152
153 ## Utility packages.
154 PACKAGES += mlib checkpath
155 mlib_CHECK = crc-mktab
156 checkpath_CHECK = tmpdir
157 checkpath_DEPS = mlib
158
159 ## Packaging machinery.
160 SCRIPTLINKS += mdw-build mdw-sbuild mdw-sbuild-server
161 SCRIPTLINKS += update-buildable-branch
162 DOTLINKS += .config/mdw-build.conf
163 .config/mdw-build.conf_SRC = mdw-build.conf
164
165 ## Shells.
166 DOTLINKS += .profile .shell-rc .shell-logout
167 DOTLINKS += .shrc
168 DOTLINKS += .zprofile .zshrc .zlogout .zshenv
169 DOTLINKS += .bash_profile .bash_completion .bash_logout
170 DOTLINKS += .bashrc .inputrc
171 .bash_profile_SRC = bash-profile
172 .bash_completion_SRC = bash-completion
173 .bash_logout_SRC = shell-logout
174 .zlogout_SRC = shell-logout
175
176 all: zap-stale-zcompdump
177 zap-stale-zcompdump:
178 $(V_AT)if [ $(HOME)/.zcompdump -ot dot/zshrc ]; then \
179 $(call v_print,ZAP,$(HOME)/.zcompdump)rm -f $(HOME)/.zcompdump; \
180 fi
181 .PHONY: zap-stale-zcompdump
182
183 ## The Plan 9 `rc' shell. This needs special hacking, because the Linux port
184 ## and Plan 9 From User Space have incompatible syntax.
185 DOTLINKS += lib/profile
186 lib/profile_SRC = rcrc
187 all: $(HOME)/.rcrc
188 $(HOME)/.rcrc: dot/rcrc
189 $(call v_tag,SED)sed 's/; if not/else/' $< >$@.new && mv $@.new $@
190
191 ## Git.
192 DOTSUBST += .gitconfig
193 SCRIPTLINKS += git-copyright-dates
194 DOTLINKS += .cgrc .tigrc
195 .gitconfig_SUBSTS = \
196 $(call substvar,releasekey,$(call mdw-conf,releasekey,481334C2)) \
197 $(call substvar,email,$(call mdw-conf,email,mdw@distorted.org.uk))
198 $(HOME)/.gitconfig: $(HOME)/.mdw.conf
199
200 ## PulseAudio.
201 DOTLINKS += .pulse/daemon.conf
202 DOTSUBST += .pulse/default.pa
203 .pulse/daemon.conf_SRC = pulse-daemon.conf
204 .pulse/default.pa_SRC = pulse-default.pa.in
205
206 ## Other editors.
207 DOTLINKS += .vimrc .mg .zile
208
209 ## Mail.
210 DOTLINKS += .mailrc .signature .muttrc
211
212 ## Lisp.
213 DOTLINKS += .cmucl-init.lisp .sbclrc .clisprc.lisp
214 DOTLINKS += .eclrc .ccl-init.lisp .abclrc
215 .cmucl-init.lisp_SRC = lisp-init.lisp
216 .sbclrc_SRC = lisp-init.lisp
217 .clisprc.lisp_SRC = lisp-init.lisp
218 .eclrc_SRC = lisp-init.lisp
219 .ccl-init.lisp_SRC = lisp-init.lisp
220 .abclrc_SRC = lisp-init.lisp
221 DOTLINKS += .swank.lisp
222
223 ## IPython, Jupyter, and related annoyances.
224 DOTLINKS += .ipython/profile_default/ipython_config.py
225 DOTLINKS += .ipython/profile_default/startup/50-key-bindings.py
226 DOTLINKS += .jupyter/nbconfig/notebook.json
227 .ipython/profile_default/ipython_config.py_SRC = ipython-config.py
228 .ipython/profile_default/startup/50-key-bindings.py_SRC = ipython-key-bindings.py
229 .jupyter/nbconfig/notebook.json_SRC = jupyter-notebook.json
230
231 ## Other languages.
232 DOTLINKS += .guile
233 DOTLINKS += .tclshrc .wishrc
234 .tclshrc_SRC = tclshrc
235 .wishrc_SRC = tclshrc
236
237 ## The `nocss' machinery.
238 SCRIPTLINKS += nocss
239 all: $(HOME)/lib/hacks/nocss/libdvdcss.so.2
240 $(HOME)/lib/hacks/nocss/libdvdcss.so.2: | $$(dir $$@)
241 $(call v_tag,TOUCH)touch $@
242
243 ## GnuPG.
244 all: $(HOME)/.gnupg/gpg.conf
245 $(HOME)/.gnupg/gpg.conf: \
246 dot/gpg.conf.m4 $(wildcard $(HOME)/.gnupg/gpg.local.conf) \
247 $(HOME)/.mdw.conf \
248 | $$(dir $$@)
249 $(call v_tag,M4)cd $(dir $@) && \
250 args= && \
251 key=$$(mdw-conf default-gpg-key nil) && \
252 case $$key in \
253 nil) ;; \
254 *) args=$${args+$$args }-DDEFAULT_KEY=$$key ;; \
255 esac && \
256 cd $(dir $@) && m4 -P $$args $(HERE)/$< >$@.new && \
257 mv $@.new $@
258 DOTLINKS += .gnupg/gpg-agent.conf
259 .gnupg/gpg-agent.conf_SRC = gpg-agent.conf
260
261 ## Random scripts.
262 SCRIPTLINKS += mdw-editor mdw-pager
263 SCRIPTLINKS += mdw-conf
264 SCRIPTLINKS += svnwrap
265 SCRIPTLINKS += guest-console
266 SCRIPTLINKS += hyperspec
267 SCRIPTLINKS += bdl
268 SCRIPTLINKS += datasyms
269 SCRIPTLINKS += fixsub
270 SCRIPTLINKS += check-debsyms
271 SCRIPTLINKS += check-blkdev-size
272 SCRIPTLINKS += xremote
273 SCRIPTLINKS += disorder-play-on-demand remote-disorder
274 SCRIPTLINKS += remote-slideshow
275
276 ## Random odds and ends.
277 DOTLINKS += .infokey .sqliterc
278 DOTLINKS += .gdbinit .toprc .aspell.conf
279 DOTLINKS += .dircolors .colordiffrc .screenrc .tmux.conf
280 DOTLINKS += .cvsrc .indent.pro .ditz-config
281 DOTLINKS += .lftp/rc
282 .lftp/rc_SRC = lftp-rc
283 DOTLINKS += .a2ps/a2psrc
284 .a2ps/a2psrc_SRC = a2psrc
285 DOTSUBST += .mykermrc
286 SCRIPTLINKS += lesspipe.sh
287
288 SCRIPTLINKS += run-with-shell-env
289 SCRIPTLINKS += start-ssh-agent start-ssh-pageant
290 SCRIPTLINKS += add-ssh-keys
291 SCRIPTLINKS += hacks/ssh/ssh
292 hacks/ssh/ssh_SRC = hacks/ssh
293
294 DOTLINKS += .w3m/config .elinks/elinks.conf
295 .w3m/config_SRC = w3m-config
296 .elinks/elinks.conf_SRC = elinks.conf
297
298 DOTLINKS += .mc/ini .mc/panels.ini
299 .mc/ini_SRC = mc-ini
300 .mc/panels.ini_SRC = mc-panels.ini
301
302 DOTLINKS += .parallel/config .parallel/sshloginfile
303 .parallel/config_SRC = parallel-config
304 .parallel/sshloginfile_SRC = parallel-hosts
305
306 all: $(HOME)/.less
307 $(HOME)/.less: dot/lesskey
308 $(V_AT)rm -f $(HOME)/.lesskey
309 $(call v_tag,LESSKEY)lesskey -o$@ $<
310
311 ###--------------------------------------------------------------------------
312 ### X11 configuration.
313
314 ifeq ($X,t)
315
316 PACKAGES += xtoys
317 xtoys_CHECK = xatom
318 xtoys_DEPS = mlib
319
320 DOTLINKS += .xinitrc .xsession .xmodmap .vncrc .vncsession
321 DOTLINKS += .config/fontconfig/fonts.conf
322 .config/fontconfig/fonts.conf_SRC = fonts.conf
323 DOTLINKS += .stalonetrayrc
324
325 DOTLINKS += .config/gnome-session/sessions/mdw.session
326 .config/gnome-session/sessions/mdw.session_SRC = mdw.session
327
328 DOTLINKS += .Eterm/themes/Eterm/theme.cfg
329 DOTLINKS += .enlightenment/keybindings.cfg
330 DOTLINKS += .enlightenment-vnc/keybindings.cfg
331 DOTLINKS += .e16/bindings.cfg
332 .Eterm/themes/Eterm/theme.cfg_SRC = eterm-theme.cfg
333 .enlightenment/keybindings.cfg_SRC = e-keybindings.cfg
334 .enlightenment-vnc/keybindings.cfg_SRC = evnc-keybindings.cfg
335 .e16/bindings.cfg_SRC = e16-bindings
336
337 DOTLINKS += .gtkrc-2.0
338 DOTLINKS += .config/gtk-3.0/gtk.css
339 DOTLINKS += .config/gtk-3.0/settings.ini
340 .config/gtk-3.0/gtk.css_SRC = gtk3.css
341 .config/gtk-3.0/settings.ini_SRC = gtk3-settings.ini
342
343 DOTLINKS += .config/user-dirs.dirs .config/user-dirs.locale
344 .config/user-dirs.dirs_SRC = user-dirs.dirs
345 .config/user-dirs.locale_SRC = user-dirs.locale
346
347 SCRIPTLINKS += xinitcmd lock-screen xshutdown
348 SCRIPTLINKS += un-backslashify-selection
349 SCRIPTLINKS += xpra-start-xdummy
350 SCRIPTLINKS += play-rawk
351 SCRIPTLINKS += x2x-privsep
352 SCRIPTLINKS += xduplic-terminal
353 SCRIPTLINKS += xzoomscr
354
355 DOTCPP += .Xdefaults
356 Xdefaults_DEFS = -DEMACSWD=$(call mdw-conf,emacs-width,77)
357 $(HOME)/.Xdefaults: $(HOME)/.mdw.conf dot/Xdefaults.pterm
358
359 ifeq ($(shell case $${DISPLAY-nil} in (:[0-9]*) echo t ;; (*) echo nil ;; esac),t)
360 dotfile-hook/.Xdefaults = \
361 $(call v_tag,XRDB)xrdb -load $<
362 endif
363
364 endif
365
366 ###--------------------------------------------------------------------------
367 ### Firefox things.
368
369 ifeq ($(FIREFOX),t)
370
371 clean::; rm -rf out/
372
373 all: out/firefox/smartup-gestures.config
374 out/firefox/smartup-gestures.config: firefox/smartup-gestures.json | out/firefox/
375 $(call v_tag,BLOB)\
376 jq -c . $< | bincode base64 >$@.new && mv $@.new $@
377
378 all: out/firefox/stylus.json
379 out/firefox/stylus.json: firefox/stylus/ firefox/stylus/*.css | out/firefox/
380 $(call v_tag,IMPLODE)\
381 firefox/implode-stylus firefox/stylus/ >$@.new && \
382 mv $@.new $@
383 endif
384
385 ###--------------------------------------------------------------------------
386 ### General symlinking.
387
388 misclink-source = $(HERE)/$(or $($1_SRC), $1)
389
390 all: $(addprefix $(HOME)/, $(MISCLINKS))
391 misclink-ok-p = \
392 $(call symlink-ok-p,$(HOME)/$1,$(call misclink-source,$1))
393 $(addprefix $(HOME)/, $(subst %,\%,$(MISCLINKS))): $(HOME)/%: \
394 $$(if $$(call misclink-ok-p,$$*),,_force) | $$(dir $$@)
395 $(call v_tag,SYMLINK) \
396 rm -f $@.new && \
397 ln -s $(call misclink-source,$*) $@.new && \
398 mv $@.new $@
399 $(symlink-hook/$*)
400
401 ###--------------------------------------------------------------------------
402 ### Processing dotfiles.
403
404 dotfile-source = $(HERE)/dot/$(or $($1_SRC), $(1:.%=%)$2)
405
406 ## Easiest: just make symlinks.
407 dotlink-ok-p = \
408 $(call symlink-ok-p,$(HOME)/$1,$(call dotfile-source,$1))
409 all: $(addprefix $(HOME)/, $(DOTLINKS))
410 $(addprefix $(HOME)/, $(subst %,\%,$(DOTLINKS))): $(HOME)/%: \
411 $$(if $$(call dotlink-ok-p,$$*),,_force) | $$(dir $$@)
412 $(call v_tag,SYMLINK) \
413 rm -f $@.new && \
414 ln -s $(call dotfile-source,$*) $@.new && \
415 mv $@.new $@
416 $(dotfile-hook/$*)
417
418 ## Hack with the C preprocessor.
419 all: $(addprefix $(HOME)/, $(DOTCPP))
420 $(addprefix $(HOME)/, $(subst %,\%,$(DOTCPP))): $(HOME)/%: \
421 $$(call dotfile-source,$$*) Makefile | $$(dir $$@)
422 $(call v_tag,CPP) \
423 rm -f $@.new && \
424 cpp -P -o$@.new $($*_DEFS) $< && \
425 mv $@.new $@
426 $(dotfile-hook/$*)
427
428 ## Hack by making simple substitutions.
429 substvar = -e $(call quote,s\a@$1@\a$2\ag)
430 SUBSTS += $(call substvar,home,$(HOME))
431 SUBSTS += $(call substvar,profile,$(HERE))
432 all: $(addprefix $(HOME)/, $(DOTSUBST))
433 $(addprefix $(HOME)/, $(subst %,\%,$(DOTSUBST))): $(HOME)/%: \
434 $$(call dotfile-source,$$*,.in) Makefile | $$(dir $$@)
435 $(call v_tag,SUBST) \
436 rm -f $@.new && \
437 sed -e "1i\
438 $(relax)### generated by $(HERE)/Makefile; do not edit!" \
439 $(SUBSTS) $($*_SUBSTS) \
440 $(call dotfile-source,$*,.in) >$@.new && \
441 mv $@.new $@
442 $(dotfile-hook/$*)
443
444 ###--------------------------------------------------------------------------
445 ### Processing script links.
446
447 script-source = $(HERE)/bin/$(or $($1_SRC), $1)
448
449 ifeq ($(prefix-shebang-p),t)
450 all: $(addprefix $(HOME)/bin/, $(SCRIPTLINKS))
451 $(addprefix $(HOME)/bin/, $(SCRIPTLINKS)): $(HOME)/bin/%: \
452 $$(call script-source,$$*) Makefile | $$(dir $$@)
453 $(call v_tag,SHEBANG) \
454 rm -f $@.new && \
455 sed "1s\a\(#! *\)/\a\1$(SHEBANG_PREFIX)/\a" \
456 $(call script-source,$*) >$@.new && \
457 chmod --reference=$(call script-source,$*) $@.new && \
458 mv $@.new $@
459 $(script-hook/$*)
460 else
461 scriptlink-ok-p = \
462 $(call symlink-ok-p,$(HOME)/bin/$1,$(call script-source,$1))
463 all: $(addprefix $(HOME)/bin/, $(SCRIPTLINKS))
464 $(addprefix $(HOME)/bin/, $(SCRIPTLINKS)): $(HOME)/bin/%: \
465 $$(if $$(call scriptlink-ok-p,$$*),,_force) | $$(dir $$@)
466 $(call v_tag,SYMLINK) \
467 rm -f $@.new && \
468 ln -s $(call script-source,$*) $@.new && \
469 mv $@.new $@
470 $(script-hook/$*)
471 endif
472
473 all: $(addprefix $(HOME)/bin/, $(SCRIPTLINKS))
474
475 ###--------------------------------------------------------------------------
476 ### Building packages from source tarballs.
477
478 SRCDIR = $(HOME)/src/profile
479
480 pkg-builddir = $(SRCDIR)/$1/build
481 pkg-stamp = $(call pkg-builddir,$1)/$2-stamp
482
483 $(foreach p, $(PACKAGES), $(eval DEP_$p = $(if $(shell \
484 if $($p_CHECK) >/dev/null 2>&1 --version; then echo t; fi),, \
485 $(call pkg-stamp,$p,install))))
486
487 $(PACKAGES:%=$(SRCDIR)/%.tar.gz): $(SRCDIR)/%.tar.gz: | $(SRCDIR)/
488 $(call v_tag,FETCH) \
489 rm -f $@.new && \
490 $(call get-url,$@.new,$(REPO)/$*.tar.gz) && \
491 mv $@.new $@
492
493 $(foreach p, $(PACKAGES), $(call pkg-stamp,$p,unpack)): \
494 $(call pkg-stamp,%,unpack): $(SRCDIR)/%.tar.gz
495 $(call v_tag,EXTRACT)rm -rf $(SRCDIR)/$* && \
496 mkdir $(SRCDIR)/$*.tmp-unpack && \
497 cd $(SRCDIR)/$*.tmp-unpack && \
498 gzip -cd ../$*.tar.gz | tar xf - && \
499 mv * ../$* && \
500 cd .. && \
501 rmdir $*.tmp-unpack && \
502 mkdir $*/build && \
503 touch $*/build/unpack-stamp
504
505 $(foreach p, $(PACKAGES), $(call pkg-stamp,$p,configure)): \
506 $(call pkg-stamp,%,configure): \
507 $(call pkg-stamp,%,unpack) \
508 $$(foreach p, $$($$*_DEPS), $$(DEP_$$p))
509 $(call v_tag,CONFIG)cd $(dir $@) && \
510 ../configure --prefix=$(HOME) \
511 PKG_CONFIG_PATH=$(HOME)/lib/pkgconfig \
512 $($*_CONFIG) >>buildlog 2>&1 && \
513 touch configure-stamp
514
515 $(foreach p, $(PACKAGES), $(call pkg-stamp,$p,build)): \
516 $(call pkg-stamp,%,build): \
517 $(call pkg-stamp,%,configure)
518 $(call v_tag,BUILD)cd $(dir $@) && \
519 $(MAKE) $($*_MAKEFLAGS) >>buildlog 2>&1 && \
520 touch build-stamp
521
522 $(foreach p, $(PACKAGES), $(call pkg-stamp,$p,install)): \
523 $(call pkg-stamp,%,install): \
524 $(call pkg-stamp,%,build)
525 $(call v_tag,INSTALL)cd $(dir $@) && \
526 $(MAKE) $($*_MAKEFLAGS) install >>buildlog 2>&1 && \
527 touch install-stamp
528 $(package-hook/$*)
529
530 all: $(foreach p, $(PACKAGES), $(DEP_$p))
531 $(foreach p, $(PACKAGES), $(eval _pkg.$p: $(call pkg-stamp,$p,install)))
532
533 ###----- That's all, folks --------------------------------------------------