blob: b4e31617d11580dbc1f251e46d602e871b0b16d9 (
plain)
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
|
## Process this file with automake to produce Makefile.in
EXTRA_DIST = \
Wilber.xcf.gz \
Wilber.xcf.gz.README \
Wilber_Construction_Kit.xcf.gz
mans = \
gimp-$(GIMP_APP_VERSION).1 \
gimprc-$(GIMP_APP_VERSION).5
man_MANS = \
$(mans) \
gimptool-$(GIMP_TOOL_VERSION).1
default_binary_mans = $(mans)
if ENABLE_GIMP_CONSOLE
default_binary_mans += gimp-console-$(GIMP_APP_VERSION).1
endif
install-data-hook:
if ENABLE_GIMP_CONSOLE
cd $(DESTDIR)$(mandir)/man1; \
rm -f gimp-console-$(GIMP_APP_VERSION).1; \
ln -s gimp-$(GIMP_APP_VERSION).1 gimp-console-$(GIMP_APP_VERSION).1
endif
if DEFAULT_BINARY
@list='$(default_binary_mans)'; \
for i in $$list; do \
s=`echo $$i | sed -e 's/.*\\(.\\)$$/\1/'`; \
n=`echo $$i | sed -e 's/-[^-]*$$//'`; \
f="$$n.$$s"; \
echo "cd $(DESTDIR)$(mandir)/man$$s"; \
cd $(DESTDIR)$(mandir)/man$$s; \
echo "rm -f $$f"; \
rm -f $$f; \
echo "ln -s $$i $$f"; \
ln -s $$i $$f; \
done
endif
uninstall-local:
if ENABLE_GIMP_CONSOLE
rm -f $(DESTDIR)$(mandir)/man1/gimp-console-$(GIMP_APP_VERSION).1
endif
if DEFAULT_BINARY
@list='$(default_binary_mans)'; \
for i in $$list; do \
s=`echo $$i | sed -e 's/.*\\(.\\)$$/\1/'`; \
n=`echo $$i | sed -e 's/-[^-]*$$//'`; \
f="$$n.$$s"; \
echo " rm -f $(DESTDIR)$(mandir)/man$$s/$$f"; \
rm -f $(DESTDIR)$(mandir)/man$$s/$$f; \
done
endif
|