aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pcvt
diff options
context:
space:
mode:
authorJoerg Wunsch <joerg@FreeBSD.org>1997-10-18 10:40:02 +0000
committerJoerg Wunsch <joerg@FreeBSD.org>1997-10-18 10:40:02 +0000
commit2cdfa5f4770f13d009b7e820a555c9da9c347c8f (patch)
treea1ef3585e60def5bd3f7d71fac49819cda416185 /usr.sbin/pcvt
parent68e65026ffe793a57f9af066dabddd625dfa58ba (diff)
downloadsrc-2cdfa5f4770f13d009b7e820a555c9da9c347c8f.tar.gz
src-2cdfa5f4770f13d009b7e820a555c9da9c347c8f.zip
Something that should have been done 2.5 years ago: install pcvt's
accompanying doc files into /usr/share/pcvt/. (This goes to the `doc' distribution, not `bin'.)
Notes
Notes: svn path=/head/; revision=30540
Diffstat (limited to 'usr.sbin/pcvt')
-rw-r--r--usr.sbin/pcvt/Makefile1
-rw-r--r--usr.sbin/pcvt/Misc/Doc/Makefile20
-rw-r--r--usr.sbin/pcvt/Misc/Etc/Makefile14
-rw-r--r--usr.sbin/pcvt/Misc/Makefile15
-rw-r--r--usr.sbin/pcvt/Misc/Makefile.inc3
5 files changed, 45 insertions, 8 deletions
diff --git a/usr.sbin/pcvt/Makefile b/usr.sbin/pcvt/Makefile
index 6644184ae208..1a3be3492ef3 100644
--- a/usr.sbin/pcvt/Makefile
+++ b/usr.sbin/pcvt/Makefile
@@ -2,5 +2,6 @@ SUBDIR= keycap cursor fontedit fonts kcon loadfont scon \
userkeys vttest ispcvt mcon
SUBDIR+= vgaio kbdio set2061
SUBDIR+= demo
+SUBDIR+= Misc
.include <bsd.subdir.mk>
diff --git a/usr.sbin/pcvt/Misc/Doc/Makefile b/usr.sbin/pcvt/Misc/Doc/Makefile
index 649291bdc779..8999896a1e72 100644
--- a/usr.sbin/pcvt/Misc/Doc/Makefile
+++ b/usr.sbin/pcvt/Misc/Doc/Makefile
@@ -1,11 +1,15 @@
-# NetBSD
-#MAN4= pcvt.0
-#MLINKS= pcvt.0 ../pcvt.0
+FILES= Acknowledgements Bibliography BugList ChangeLog CharGen \
+ Charsets EscapeSequences Keyboard.HP Keyboard.VT \
+ Manifest NotesAndHints TestedHardware ToDo
-# FreeBSD
-#MAN4= pcvt.4
-#MLINKS= pcvt.4 ../pcvt.4
+beforeinstall:
+ for file in ${FILES}; \
+ do \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${.CURDIR}/$$file ${DESTDIR}${BINDIR}/Doc/$$file ; \
+ done
-MANSUBDIR= /i386
+afterdistribute: beforeinstall
-.include <bsd.prog.mk>
+.include "../Makefile.inc"
+.include <bsd.subdir.mk>
diff --git a/usr.sbin/pcvt/Misc/Etc/Makefile b/usr.sbin/pcvt/Misc/Etc/Makefile
new file mode 100644
index 000000000000..46117a4697a2
--- /dev/null
+++ b/usr.sbin/pcvt/Misc/Etc/Makefile
@@ -0,0 +1,14 @@
+
+FILES= Termcap Terminfo pcvt.el rc.local uemacs.tar.Z.uu xmodmap-german
+
+beforeinstall:
+ for file in ${FILES}; \
+ do \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${.CURDIR}/$$file ${DESTDIR}${BINDIR}/Etc/$$file ; \
+ done
+
+afterdistribute: beforeinstall
+
+.include "../Makefile.inc"
+.include <bsd.subdir.mk>
diff --git a/usr.sbin/pcvt/Misc/Makefile b/usr.sbin/pcvt/Misc/Makefile
new file mode 100644
index 000000000000..dcbc0b54a336
--- /dev/null
+++ b/usr.sbin/pcvt/Misc/Makefile
@@ -0,0 +1,15 @@
+SUBDIR= Doc Etc
+
+FILES= README.FIRST
+
+beforeinstall:
+ for file in ${FILES}; \
+ do \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${.CURDIR}/$$file ${DESTDIR}${BINDIR}/$$file ; \
+ done
+
+afterdistribute: beforeinstall
+
+.include "Makefile.inc"
+.include <bsd.subdir.mk>
diff --git a/usr.sbin/pcvt/Misc/Makefile.inc b/usr.sbin/pcvt/Misc/Makefile.inc
new file mode 100644
index 000000000000..6c5322a59e0f
--- /dev/null
+++ b/usr.sbin/pcvt/Misc/Makefile.inc
@@ -0,0 +1,3 @@
+DISTRIBUTION= doc
+BINDIR= /usr/share/pcvt
+BINMODE= 0444