diff options
author | Peter Wemm <peter@FreeBSD.org> | 1997-11-22 14:56:14 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1997-11-22 14:56:14 +0000 |
commit | 5d18ff83bb4fa8c25aa55100c79753a43140e804 (patch) | |
tree | 931178760a9436d6607aec0feebd2f3c58d1bf12 /comms/conserver/files/patch-ag | |
parent | Upgrade to 5.16 (diff) |
A port for conserver. conserver is the answer to serial consoles. :-)
There is a later version of conserver, but it requires a rather extensive
build environment and set of tools to build it. This version works is
nice and stable though.
Notes
Notes:
svn path=/head/; revision=8756
Diffstat (limited to 'comms/conserver/files/patch-ag')
-rw-r--r-- | comms/conserver/files/patch-ag | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/comms/conserver/files/patch-ag b/comms/conserver/files/patch-ag new file mode 100644 index 000000000000..0c42c41f3c1b --- /dev/null +++ b/comms/conserver/files/patch-ag @@ -0,0 +1,36 @@ +--- conserver.cf/Makefile.orig Sat Nov 22 22:25:19 1997 ++++ conserver.cf/Makefile Sat Nov 22 22:29:15 1997 +@@ -4,18 +4,19 @@ + # + + # if you edit LIB below you have to change cons.hs default config define. +-PROG= conserver.cf +-LIB= ${DESTDIR}/usr/local/lib +-DOC= ${DESTDIR}/usr/man ++PROG= conserver.cf.eg ++LIB= ${DESTDIR}/usr/local/etc ++DOC= ${DESTDIR}/usr/local/man/man5 + + SRCs= conserver.cf + MAN= conserver.cf.5l + OTHER= README + SOURCE= Makefile ${OTHER} ${MAN} ${SRCl} ${SRCs} + +-all: ${SRCl} ${PROG} ++all: ${PROG} + + ${PROG}: ${SRCs} ++ sed -e '/^[^#]/s/^/#/' < ${SRCs} > ${PROG} + + clean: FRC + rm -f Makefile.bak a.out core errs lint.out tags +@@ -29,7 +30,8 @@ + dirs: ${LIB} ${DOC} + + install: all dirs FRC +- install -c ${PROG} ${LIB}/${PROG} ++ install -c -o bin -g bin -m 444 ${PROG} ${LIB} ++ install -c -o bin -g bin -m 444 ${MAN} ${DOC}/conserver.cf.5 + + lint: FRC + |