View | Details | Raw Unified | Return to bug 41687
Collapse All | Expand All

(-)nedit/files/patch-aa (-3 / +3 lines)
Lines 8-16 Link Here
8
  
8
  
9
+ install::
9
+ install::
10
+ 	(cd source; make -f Makefile.freebsd install)
10
+ 	(cd source; make -f Makefile.freebsd install)
11
+ 	${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 644 doc/nedit.man ${PREFIX}/man/man1/nedit.1
11
+ 	${INSTALL_MAN} doc/nedit.man ${PREFIX}/man/man1/nedit.1
12
+ 	${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 644 doc/nc.man ${PREFIX}/man/man1/nclient.1
12
+ 	${INSTALL_MAN} doc/nc.man ${PREFIX}/man/man1/nclient.1
13
+ 	${INSTALL} ${COPY} -m 644 NEdit.ad ${X11BASE}/lib/X11/app-defaults/NEdit.ad
13
+ 	${INSTALL_DATA} NEdit.ad ${X11BASE}/lib/X11/app-defaults/NEdit.ad
14
+ 
14
+ 
15
  clean:
15
  clean:
16
  	(cd util; $(MAKE) -f Makefile.common clean)
16
  	(cd util; $(MAKE) -f Makefile.common clean)
(-)nedit/files/patch-ab (-2 / +2 lines)
Lines 5-12 Link Here
5
 	$(CC) $(CFLAGS) nc.o ../util/libNUtil.a $(LIBS) -o $@
5
 	$(CC) $(CFLAGS) nc.o ../util/libNUtil.a $(LIBS) -o $@
6
 	
6
 	
7
+install: nedit nc
7
+install: nedit nc
8
+	${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} nedit ${PREFIX}/bin
8
+	${INSTALL_PROGRAM} nedit ${PREFIX}/bin
9
+	${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} nc ${PREFIX}/bin/nclient
9
+	${INSTALL_PROGRAM} nc ${PREFIX}/bin/nclient
10
+
10
+
11
 help.o: help.c
11
 help.o: help.c
12
 	$(CC) $(CFLAGS) $(BIGGER_STRINGS) -c help.c -o $@
12
 	$(CC) $(CFLAGS) $(BIGGER_STRINGS) -c help.c -o $@

Return to bug 41687