summaryrefslogtreecommitdiff
path: root/editors/joe/patches/patch-aa
blob: f0cd6ea97d9f42cb65d942374892d8bbbeb53dd9 (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
$NetBSD: patch-aa,v 1.5 2003/04/27 17:45:30 cjep Exp $

--- Makefile.orig	1995-01-23 06:01:28.000000000 +0000
+++ Makefile
@@ -9,9 +9,9 @@
 # to go and where you want the man page
 # to go:
 
-WHEREJOE = /usr/local/bin
-WHERERC = /usr/local/lib
-WHEREMAN = /usr/man/man1
+WHEREJOE = ${PREFIX}/bin
+WHERERC = ${PREFIX}/lib
+WHEREMAN = ${PREFIX}/man/man1
 
 # If you want to use TERMINFO, you have to set
 # the following variable to 1.  Also you have to
@@ -27,7 +27,7 @@ TERMINFO = 0
 
 # C compiler options: make's built-in rules use this variable
 
-CFLAGS = -O
+# CFLAGS = -O
 
 # C compiler to use: make's built-in rules use this variable
 
@@ -45,7 +45,7 @@ CC = cc
 # add '-ltinfo', '-lcurses' or '-ltermlib',
 # depending on the system.
 
-EXTRALIBS =
+EXTRALIBS = -ltermcap
 
 # Object files
 
@@ -84,17 +84,17 @@ termidx: termidx.o
 
 # Install proceedure
 
-install: joe termidx
+install: joe # termidx
 	strip joe
-	strip termidx
+#	strip termidx
 	if [ ! -d $(WHEREJOE) ]; then mkdir $(WHEREJOE); chmod a+rx $(WHEREJOE); fi
-	rm -f $(WHEREJOE)/joe $(WHEREJOE)/jmacs $(WHEREJOE)/jstar $(WHEREJOE)/jpico $(WHEREJOE)/rjoe $(WHEREJOE)/termidx
+	rm -f $(WHEREJOE)/joe $(WHEREJOE)/jmacs $(WHEREJOE)/jstar $(WHEREJOE)/jpico $(WHEREJOE)/rjoe # $(WHEREJOE)/termidx
 	mv joe $(WHEREJOE)
 	ln $(WHEREJOE)/joe $(WHEREJOE)/jmacs
 	ln $(WHEREJOE)/joe $(WHEREJOE)/jstar
 	ln $(WHEREJOE)/joe $(WHEREJOE)/rjoe
 	ln $(WHEREJOE)/joe $(WHEREJOE)/jpico
-	mv termidx $(WHEREJOE)
+#	mv termidx $(WHEREJOE)
 	if [ ! -d $(WHERERC) ]; then mkdir $(WHERERC); chmod a+rx $(WHERERC); fi
 	rm -f $(WHERERC)/joerc $(WHERERC)/jmacsrc $(WHERERC)/jstarrc $(WHERERC)/jpicorc $(WHERERC)/rjoerc $(WHEREMAN)/joe.1
 	cp joerc $(WHERERC)
@@ -114,13 +114,13 @@ install: joe termidx
 	chmod a+r $(WHERERC)/rjoerc
 	chmod a+r $(WHERERC)/jpicorc
 	chmod a+r $(WHEREMAN)/joe.1
-	chmod a+x $(WHEREJOE)/termidx
-	rm -f $(WHERERC)/termcap
-	cp termcap $(WHERERC)/termcap
-	chmod a+r $(WHERERC)/termcap
-	rm -f $(WHERERC)/terminfo
-	cp terminfo $(WHERERC)/terminfo
-	chmod a+r $(WHERERC)/terminfo
+#	chmod a+x $(WHEREJOE)/termidx
+#	rm -f $(WHERERC)/termcap
+#	cp termcap $(WHERERC)/termcap
+#	chmod a+r $(WHERERC)/termcap
+#	rm -f $(WHERERC)/terminfo
+#	cp terminfo $(WHERERC)/terminfo
+#	chmod a+r $(WHERERC)/terminfo
 
 # Cleanup proceedure