blob: 4a16d72994d1e3e17fee1541ada6b6ad4b51d28f (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
--- ./Makefile.orig 2005-05-16 14:14:09.000000000 +0300
+++ ./Makefile 2009-04-21 20:35:11.000000000 +0300
@@ -7,53 +7,53 @@
# Change this for local installation,
# e. g. /home/user or /usr/local
-prefix = /usr/local
+#prefix = /usr/local
# Change this for some distributions (current setting
# is OK for SuSE)
-docdir = /usr/share/doc/packages
+docdir = ${PREFIX}/share/doc
# Change this to $(prefix)/man for older distributions
# (current setting is correct according to LSB)
-mandir = $(prefix)/share/man
+mandir = ${PREFIX}/man
#
# Muttprint needs GNU make. If you installed GNU make
# as `gmake', you have to change this
-MAKE = make
+#MAKE = make
# Change this three directories only if you're know
# what you do
-sharedir = $(prefix)/share
-libdir = $(prefix)/lib
-bindir = $(prefix)/bin
-sysconfdir = /etc
+sharedir = ${PREFIX}/share
+libdir = ${PREFIX}/lib
+bindir = ${PREFIX}/bin
+sysconfdir = ${PREFIX}/etc
docdirname = muttprint
#####################################################
#####################################################
-install = install
-INSTALLBIN = $(install) -m 0755
-INSTALL = $(install) -m 0644
+#install = install
+#INSTALLBIN = $(install) -m 0755
+#INSTALL = $(install) -m 0644
all:
$(MAKE) -C langinfo
install:
- mkdir -p $(docdir)/$(docdirname) $(bindir) $(sharedir)/muttprint/translations \
- $(mandir)/man1 $(mandir)/de/man1 $(mandir)/es/man1 \
- $(mandir)/cs/man1 $(mandir)/it/man1
- $(INSTALLBIN) muttprint $(bindir)/
- $(INSTALL) CHANGES COPYING INSTALL README* sample-muttprintrc-* \
+ mkdir -p $(bindir) $(sharedir)/muttprint/translations $(mandir)/man1
+ ${BSD_INSTALL_SCRIPT} muttprint $(bindir)/
+ ${BSD_INSTALL_DATA} `find pics -type f -print` $(sharedir)/muttprint/
+ ${BSD_INSTALL_DATA} `find translations -type f -print` $(sharedir)/muttprint/translations
+ $(MAKE) -C doc/manpages mandir=$(mandir) install
+
+install-with-doc: install
+ mkdir -p $(docdir)/$(docdirname)
+ ${BSD_INSTALL_DATA} CHANGES COPYING INSTALL README* sample-muttprintrc-* \
$(docdir)/$(docdirname)
- $(INSTALL) `find pics -type f -print` $(sharedir)/muttprint/
- $(INSTALL) `find translations -type f -print` $(sharedir)/muttprint/translations
$(MAKE) -C langinfo bindir=$(bindir) install
$(MAKE) -C doc/manual docdir=$(docdir) docdirname=$(docdirname) install
- $(MAKE) -C doc/manpages mandir=$(mandir) install
-
uninstall:
rm $(bindir)/muttprint*
|