Ugen J.S. Antsilevich
a53227ff18
Move ipfirewall.4 & snp.4 facility manpage
...
to share/man/man4
1995-02-17 18:48:36 +00:00
Joerg Wunsch
68be960997
Removed the bogus duplicate pcvt* alias names. Ache renamed them
...
to shut up cap_mkdb warnings, but they better have to go away.
Reviewed by: Hellmuth Michaelis
1995-02-17 14:06:51 +00:00
Jordan K. Hubbard
664b5e14dc
Always go to ${WRKDIR} before extraction. Modify the tar extract command
...
args to take advantage of this.
Pointed-out-by: asami
1995-02-17 08:52:55 +00:00
Joerg Wunsch
8b47b44cc0
Spell my name with an umlaut. Looks better to me. :-)
1995-02-16 12:04:53 +00:00
Rodney W. Grimes
d5b8d6b667
Update my email address.
1995-02-16 03:13:50 +00:00
Garrett Wollman
d69128d862
Document Transaction TCP.
1995-02-15 22:07:28 +00:00
Jordan K. Hubbard
37c4acbb58
Make the email address syntax more regular
...
Add pointer to Mark Murray's foreign eBones/secure site.
1995-02-15 07:07:18 +00:00
Jordan K. Hubbard
38eb155156
Add Hong Kong mirror.
1995-02-15 06:41:50 +00:00
Garrett Wollman
a2cc1fa205
Document TCP MIB variables (tcp.4).
...
Document IP MIB variables (inet.4).
Document Internet-family protocol-specified route cloning (inet.4).
Delete all references to classed addresses (inet.4).
1995-02-15 03:30:54 +00:00
Garrett Wollman
8f283fdc8f
Move apm(4) to i386 section, since it is i386-specific.
1995-02-15 01:20:03 +00:00
Gary Palmer
05002e8cb5
Make the checksum target not bomb out if there is a mismatch, just
...
print a warning. A better fix will come along just as soon as I
work out what it is.
1995-02-14 21:29:28 +00:00
Stefan Eßer
70b344d1af
Added Matt Thomas' e-mail address.
1995-02-14 20:20:46 +00:00
Rodney W. Grimes
4a218a6de8
Remove use of ${DESTDIR} in target of symbolic link, it makes the link
...
point to the wrong place.
1995-02-14 19:43:09 +00:00
Poul-Henning Kamp
d06b2f2908
Another one...
1995-02-14 19:39:50 +00:00
Poul-Henning Kamp
47ccef1936
More people not on the list.
...
Submitted by: se
1995-02-14 19:19:15 +00:00
Poul-Henning Kamp
00ee0c15e4
Gene Stark added. Should have been here for a long time already.
...
Anybody else missing ?
1995-02-14 18:04:16 +00:00
Poul-Henning Kamp
a2d29640be
Added a bunch of people who deserved it.
1995-02-14 04:07:59 +00:00
Andrey A. Chernov
cc01ee1e51
Shut up cap_mkdb warnings on pcvt* entries
1995-02-11 15:16:11 +00:00
Poul-Henning Kamp
d80a026702
Make sure that info files never hit the "bin" dist.
1995-02-11 05:28:31 +00:00
L Jonas Olsson
dc81ebd7a2
Change my email address.
1995-02-09 12:49:41 +00:00
Jordan K. Hubbard
b7e56a8d18
Add L Jonas Olsson <ljo@amcell2.caisr.cwru.edu>
1995-02-09 12:45:42 +00:00
Jordan K. Hubbard
1aa515e96a
Update some folks who were inadequately credited. Still at least 2 more
...
passes thru this file required.
1995-02-09 11:11:39 +00:00
Bruce Evans
cdaec7b1a1
More complete implementation of SUBDIR for programs, libraries and kmods.
...
`depend' wasn't supported. This seems to have only broken `make depend'
in gnu/usr.bin/ld.
bsd.prog.mk:
Build the man pages in ${MANDEPEND} at build time.
1995-02-08 21:35:31 +00:00
Bruce Evans
7111dc5ac1
CLEANFILES was missing most of the source links.
1995-02-08 21:27:09 +00:00
Jeffrey Hsu
e687de7a15
Allow arbitrarily named configure script for use w/ HAS_CONFIGURE.
1995-02-06 08:52:19 +00:00
Gary Palmer
5b07358347
Add the ports-base target and correct two typos (hosbase!=hostbase)
1995-02-05 23:31:25 +00:00
Jordan K. Hubbard
f534e77446
Add pcvt termcap entries (quite a lot of them - whew!)
...
Submitted by: hm
1995-02-05 11:17:03 +00:00
Jordan K. Hubbard
6554acd8ba
Add man page for pcvt console driver.
...
Submitted by: hm
1995-02-05 11:16:33 +00:00
Poul-Henning Kamp
4620f0962b
Use absolute path to md5 program. It lives in /sbin and people are unlikely
...
to have $PATH to it.
1995-02-04 22:56:28 +00:00
Poul-Henning Kamp
7a614290f3
Added final '\n'.
1995-02-04 19:59:58 +00:00
Poul-Henning Kamp
a309714274
Add missing trailing '\n'
1995-02-04 19:56:39 +00:00
Satoshi Asami
94dcffca87
Add long-awaited (:) support for sophisticated dependency checking. We now
...
have three variables:
EXEC_DEPENDS - A list of "prog:dir" pairs of other ports this
package depends on. "prog" is the name of an
executable. make will search your $PATH for it and go
into "dir" to do a "make all install" if it's not found.
LIB_DEPENDS - A list of "lib:dir" pairs of other ports this package
depends on. "lib" is the name of a shared library.
make will use "ldconfig -r" to search for the
library. Note that lib can be any regular expression,
and you need two backslashes in front of dots (.) to
supress its special meaning (e.g., use
"foo\\.2\\.:${PORTSDIR}/utils/foo" to match "libfoo.2.*").
DEPENDS - A list of other ports this package depends on being
made first. Use this for things that don't fall into
the above two categories.
DEPENDS behaves exactly like before, so old Makefiles will still work
the same. The two variables are lists of pairs as described above.
For instance, if your program depends on unzip and libjpeg.5.*, use
the following definitions:
EXEC_DEPENDS= unzip:${PORTSDIR}/archivers/unzip
LIB_DEPENDS= jpeg\\.5\\.:${PORTSDIR}/graphics/jpeg
gmake:${PORTSDIR}/utils/gmake is automatically added to EXEC_DEPENDS
if USE_GMAKE is defined.
If NO_DEPENDS is defined, the list will just be printed out one by one.
1995-02-04 05:49:26 +00:00
Jordan K. Hubbard
5143382afe
Create an obj symlink when necessary.
...
Submitted by: "Remy CARD" <Remy.Card@masi.ibp.fr>
1995-02-02 04:53:30 +00:00
Gary Palmer
cc715f2bca
Start the ball rolling by sticking a
...
MAINTAINER?= line in here.
Idea by: jkh@FreeBSD.ORG
1995-02-01 21:47:57 +00:00
Jordan K. Hubbard
4350346dea
Change the way I make the link to /etc/termcap. It worked for install
...
but not distribute. Now it works for both.
1995-02-01 08:32:05 +00:00
Jordan K. Hubbard
45a52e5c98
Add our new Swedish mirror site.
1995-01-30 21:58:39 +00:00
Søren Schmidt
123222dbd7
Minor fixes to syscons. Blink cursor fixed. History buffer fixed.
...
kbdtables updated with boot option for CTL+ALT+DEL
1995-01-30 21:39:18 +00:00
Jordan K. Hubbard
3f4fff96f9
Make fetch a bit more forgiving of subdirs.
1995-01-30 10:06:56 +00:00
Jordan K. Hubbard
6098353123
Add LN_FLAGS to all the places it makes sense.
1995-01-30 07:22:02 +00:00
Jordan K. Hubbard
45f7d107ac
Add new LN_FLAGS variable for making LINKS symbolic and whatnot.
1995-01-30 07:20:01 +00:00
Jordan K. Hubbard
ed0770e938
Make a link to /etc for termcap file. /etc/termcap is just too lodged in
...
folklore to do without! :-)
1995-01-30 07:19:02 +00:00
Jordan K. Hubbard
f3bee8cfe4
Make the default paths a bit more rational for our systems (sheesh!).
...
Thanks, Sean!
Suggested by: Sean McDermott <spm@staff.cc.purdue.edu>
1995-01-29 08:01:05 +00:00
Gary Palmer
50d97d16d4
Give this a serious dose of reality by adding the last 2-3
...
months worth of new sup targets!
1995-01-29 06:46:27 +00:00
Søren Schmidt
a926a37b0a
Third round in syscons update.
...
Display update method changed, now allways write in memory buffer,
then periodically update physical display.
Speed improvements (now > 5 times faster than the old syscons).
History now circular buffer, with changeable size.
History scroll by up/down line, up/down page, home and end.
Backtab proberly implemented.
Now space for 96 function keys, 63 allocated standard, default now
SCO/SYSV compat again as in the old days.
New keyboard definition files ~share/syscons/keymaps/*
Misc fixes for old "hacks" that broke SCO/SYSV compat.
More that I forgot before writing this...
1995-01-28 22:18:05 +00:00
Jordan K. Hubbard
ebf5d6bd28
Delete a bogus :.
1995-01-28 13:17:38 +00:00
Jordan K. Hubbard
bc046396d6
Update these to be a little more business-like in appearance.
...
Delete obsolete information.
1995-01-27 23:15:31 +00:00
Poul-Henning Kamp
2e442ca3f4
Man page for the new nca driver.
1995-01-27 07:54:59 +00:00
Andrey A. Chernov
49a5c6fd25
Change overloaded Keypad 5 to fkey65
1995-01-26 11:22:01 +00:00
Andrey A. Chernov
e4707252dc
Upgrade Back tab & Keypad 5 info
1995-01-26 11:04:52 +00:00
Andrey A. Chernov
e7a1520824
Describe Left window, Right window and Menu keys
1995-01-26 09:24:14 +00:00