summaryrefslogtreecommitdiff
blob: fa1f612607be32c8f6f40f7c0bb855872c43038a (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
diff -urN zhcon-0.2.3.ORIG/doc/Makefile.am zhcon-0.2.3/doc/Makefile.am
--- zhcon-0.2.3.ORIG/doc/Makefile.am	2002-05-18 22:58:02.000000000 +0900
+++ zhcon-0.2.3/doc/Makefile.am	2003-11-05 07:42:04.000000000 +0900
@@ -3,8 +3,8 @@
 EXTRA_DIST = zhcon.1.in poem.big5 poem.gb bpsf.txt manual.tex manual.dvi manual.ps html.tar.gz
 
 install-data-local:
-	$(mkinstalldirs) $(mandir)/man1/
-	$(INSTALL_DATA) $(srcdir)/zhcon.1 $(mandir)/man1/zhcon.1
+	$(mkinstalldirs) $(DESTDIR)$(mandir)/man1/
+	$(INSTALL_DATA) $(srcdir)/zhcon.1 $(DESTDIR)$(mandir)/man1/zhcon.1
 
 uninstall-local:
-	-rm -f $(mandir)/man1/zhcon.1
+	-rm -f $(DESTDIR)$(mandir)/man1/zhcon.1
diff -urN zhcon-0.2.3.ORIG/doc/Makefile.in zhcon-0.2.3/doc/Makefile.in
--- zhcon-0.2.3.ORIG/doc/Makefile.in	2003-04-17 20:29:47.000000000 +0900
+++ zhcon-0.2.3/doc/Makefile.in	2003-11-05 07:43:05.000000000 +0900
@@ -226,11 +226,11 @@
 
 
 install-data-local:
-	$(mkinstalldirs) $(mandir)/man1/
-	$(INSTALL_DATA) $(srcdir)/zhcon.1 $(mandir)/man1/zhcon.1
+	$(mkinstalldirs) $(DESTDIR)$(mandir)/man1/
+	$(INSTALL_DATA) $(srcdir)/zhcon.1 $(DESTDIR)$(mandir)/man1/zhcon.1
 
 uninstall-local:
-	-rm -f $(mandir)/man1/zhcon.1
+	-rm -f $(DESTDIR)$(mandir)/man1/zhcon.1
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.
 .NOEXPORT:
diff -urN zhcon-0.2.3.ORIG/font/Makefile.am zhcon-0.2.3/font/Makefile.am
--- zhcon-0.2.3.ORIG/font/Makefile.am	2002-05-12 12:58:59.000000000 +0900
+++ zhcon-0.2.3/font/Makefile.am	2003-11-05 07:50:47.000000000 +0900
@@ -1,8 +1,8 @@
 EXTRA_DIST = *.bpsf
 
 install-data-local:
-	$(mkinstalldirs) $(libdir)/zhcon/font/
-	$(INSTALL_DATA) $(srcdir)/*.bpsf $(libdir)/zhcon/font/
+	$(mkinstalldirs) $(DESTDIR)$(libdir)/zhcon/font/
+	$(INSTALL_DATA) $(srcdir)/*.bpsf $(DESTDIR)$(libdir)/zhcon/font/
 
 uninstall-local:
-	-rm -f $(libdir)/zhcon/font/*.bpsf
+	-rm -f $(DESTDIR)$(libdir)/zhcon/font/*.bpsf
diff -urN zhcon-0.2.3.ORIG/font/Makefile.in zhcon-0.2.3/font/Makefile.in
--- zhcon-0.2.3.ORIG/font/Makefile.in	2003-04-17 20:29:47.000000000 +0900
+++ zhcon-0.2.3/font/Makefile.in	2003-11-05 07:50:59.000000000 +0900
@@ -222,11 +222,11 @@
 
 
 install-data-local:
-	$(mkinstalldirs) $(libdir)/zhcon/font/
-	$(INSTALL_DATA) $(srcdir)/*.bpsf $(libdir)/zhcon/font/
+	$(mkinstalldirs) $(DESTDIR)$(libdir)/zhcon/font/
+	$(INSTALL_DATA) $(srcdir)/*.bpsf $(DESTDIR)$(libdir)/zhcon/font/
 
 uninstall-local:
-	-rm -f $(libdir)/zhcon/font/*.bpsf
+	-rm -f $(DESTDIR)$(libdir)/zhcon/font/*.bpsf
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.
 .NOEXPORT:
diff -urN zhcon-0.2.3.ORIG/input/Makefile.am zhcon-0.2.3/input/Makefile.am
--- zhcon-0.2.3.ORIG/input/Makefile.am	2002-05-12 12:58:31.000000000 +0900
+++ zhcon-0.2.3/input/Makefile.am	2003-11-05 07:47:23.000000000 +0900
@@ -1,8 +1,8 @@
 EXTRA_DIST = *.mb
 
 install-data-local:
-	$(mkinstalldirs) $(libdir)/zhcon/input/
-	$(INSTALL_DATA) $(srcdir)/*.mb $(libdir)/zhcon/input/
+	$(mkinstalldirs) $(DESTDIR)$(libdir)/zhcon/input/
+	$(INSTALL_DATA) $(srcdir)/*.mb $(DESTDIR)$(libdir)/zhcon/input/
 
 uninstall-local:
-	-rm -f $(libdir)/zhcon/input/*.mb
+	-rm -f $(DESTDIR)$(libdir)/zhcon/input/*.mb
diff -urN zhcon-0.2.3.ORIG/input/Makefile.in zhcon-0.2.3/input/Makefile.in
--- zhcon-0.2.3.ORIG/input/Makefile.in	2003-04-17 20:29:47.000000000 +0900
+++ zhcon-0.2.3/input/Makefile.in	2003-11-05 07:47:38.000000000 +0900
@@ -222,11 +222,11 @@
 
 
 install-data-local:
-	$(mkinstalldirs) $(libdir)/zhcon/input/
-	$(INSTALL_DATA) $(srcdir)/*.mb $(libdir)/zhcon/input/
+	$(mkinstalldirs) $(DESTDIR)$(libdir)/zhcon/input/
+	$(INSTALL_DATA) $(srcdir)/*.mb $(DESTDIR)$(libdir)/zhcon/input/
 
 uninstall-local:
-	-rm -f $(libdir)/zhcon/input/*.mb
+	-rm -f $(DESTDIR)$(libdir)/zhcon/input/*.mb
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.
 .NOEXPORT:
diff -urN zhcon-0.2.3.ORIG/src/Makefile.am zhcon-0.2.3/src/Makefile.am
--- zhcon-0.2.3.ORIG/src/Makefile.am	2003-04-17 20:27:28.000000000 +0900
+++ zhcon-0.2.3/src/Makefile.am	2003-11-05 07:37:27.000000000 +0900
@@ -8,7 +8,7 @@
 SUBDIRS = display
 
 install-exec-local:
-	chmod 4755 $(bindir)/zhcon
+	chmod 4755 $(DESTDIR)$(bindir)/zhcon
 
 install-data-local:
 	$(mkinstalldirs) $(DESTDIR)/etc
diff -urN zhcon-0.2.3.ORIG/src/Makefile.in zhcon-0.2.3/src/Makefile.in
--- zhcon-0.2.3.ORIG/src/Makefile.in	2003-04-17 20:29:48.000000000 +0900
+++ zhcon-0.2.3/src/Makefile.in	2003-11-05 07:37:16.000000000 +0900
@@ -474,7 +474,7 @@
 
 
 install-exec-local:
-	chmod 4755 $(bindir)/zhcon
+	chmod 4755 $(DESTDIR)$(bindir)/zhcon
 
 install-data-local:
 	$(mkinstalldirs) $(DESTDIR)/etc