summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/cvs/examples/modules
blob: ac8cd4dc840bfc24ddbbb06dfa278554bbbd2197 (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
#
# The CVS Modules File
#
#ident	"@(#)cvs/examples:$Name:  $:$Id: modules,v 1.4 1995/11/14 23:28:48 woods Exp $"
#
# Three different line formats are valid:
#	key	-a    aliases...
#	key [options] directory
#	key [options] directory files...
#
# Where "options" are composed of:
#	-i prog		Run "prog" on "cvs commit" from top-level of module.
#	-o prog		Run "prog" on "cvs checkout" of module.
#	-e prog		Run "prog" on "cvs export" of module.
#	-t prog		Run "prog" on "cvs rtag" of module.
#	-u prog		Run "prog" on "cvs update" of module.
#	-d dir		Place module in directory "dir" instead of module name.
#	-l		Top-level directory only -- do not recurse.
#
# And "directory" is a path to a directory relative to $CVSROOT.
#
# The "-a" option specifies an alias.  An alias is interpreted as if
# everything on the right of the "-a" had been typed on the command line.
#
# You can encode a module within a module by using the special '&'
# character to interpose another module into the current module.  This
# can be useful for creating a module that consists of many directories
# spread out over the entire source repository.
#

# Convenient aliases
world		-a .

# CVSROOT support
CVSROOT		-i /usr/local/bin/mkmodules CVSROOT
commitinfo	-i /usr/local/bin/mkmodules CVSROOT commitinfo
cvswrappers	-i /usr/local/bin/mkmodules CVSROOT cvswrappers
editinfo	-i /usr/local/bin/mkmodules CVSROOT editinfo
modules		-i /usr/local/bin/mkmodules CVSROOT modules
loginfo		-i /usr/local/bin/mkmodules CVSROOT loginfo
rcsinfo		-i /usr/local/bin/mkmodules CVSROOT rcsinfo
rcstemplate	-i /usr/local/bin/mkmodules CVSROOT rcstemplate
taginfo		-i /usr/local/bin/mkmodules CVSROOT taginfo

# Add more modules here 
#
# END_REQUIRED_CONTENT (this comment for cvsinit)
#
# The remainder was for the Prisma OS sources
#

# another convenient alias
kernel		-a sys lang/adb sparcsim

# The "sys" entry exists only to make symbolic links after checkout
sys		-o sys/tools/make_links sys

# Sub-directories of "bin"
awk		bin/awk
csh		bin/csh
diff		bin/diff
make		bin/make
sed		bin/sed
sh		bin/sh

# Programs that live in "bin"
cat		bin Makefile cat.c
chgrp		bin Makefile chgrp.c
chmod		bin Makefile chmod.c
cmp		bin Makefile cmp.c
cp		bin Makefile cp.c
date		bin Makefile date.c
dd		bin Makefile dd.c
df		bin Makefile df.c
domainname	bin Makefile domainname.c
du		bin Makefile du.c
echo		bin Makefile echo.c
ed		bin Makefile ed.c
env		bin Makefile env.c
expr		bin Makefile expr.c
grep		bin Makefile grep.c
hostid		bin Makefile hostid.c
hostname	bin Makefile hostname.c
kill		bin Makefile kill.c
ldd		bin Makefile ldd.c
line		bin Makefile line.c
ln		bin Makefile ln.c
login		bin Makefile login.c
ls		bin Makefile ls.c
mail		bin Makefile mail.c
mkdir		bin Makefile mkdir.c
mt		bin Makefile mt.c
mv		bin Makefile mv.c
newgrp		bin Makefile newgrp.c
nice		bin Makefile nice.c
od		bin Makefile od.c
pagesize	bin Makefile pagesize.c
passwd		bin Makefile passwd.c
pr		bin Makefile pr.c
ps		bin Makefile ps.c
pwd		bin Makefile pwd.c
rm		bin Makefile rm.c
rmail		bin Makefile rmail.c
rmdir		bin Makefile rmdir.c
stty		bin Makefile stty.c
su		bin Makefile su.c
sync		bin Makefile sync.c
tar		bin Makefile tar.c
tee		bin Makefile tee.c
test		bin Makefile test.c
time		bin Makefile time.c
wall		bin Makefile wall.c
who		bin Makefile who.c
write		bin Makefile write.c

# Sub-directories of "etc"
dump		etc/dump
files		etc/files
fsck		etc/fsck
getty		etc/getty
in.routed	etc/in.routed
restore		etc/restore
rpc.lockd	etc/rpc.lockd
rpc.statd	etc/rpc.statd

# Programs that live in "etc"
arp		etc Makefile arp.c
biod		etc Makefile biod.c
chown		etc Makefile chown.c
clri		etc Makefile clri.c
dkinfo		etc Makefile dkinfo.c
dmesg		etc Makefile dmesg.c
fsirand		etc Makefile fsirand.c
halt		etc Makefile halt.c
ifconfig	etc Makefile ifconfig.c
in.rlogind	etc Makefile in.rlogind.c
in.rshd		etc Makefile in.rshd.c
inetd		etc Makefile inetd.c
init		etc Makefile init.c
mkfs		etc Makefile mkfs.c
mknod		etc Makefile mknod.c
mount		etc Makefile mount.c
newfs		etc Makefile newfs.c
nfsd		etc Makefile nfsd.c
portmap		etc Makefile portmap.c
pstat		etc Makefile pstat.c
reboot		etc Makefile reboot.c
renice		etc Makefile renice.c
rmt		etc Makefile rmt.c
shutdown	etc Makefile shutdown.c
syslogd		etc Makefile syslogd.c
umount		etc Makefile umount.c
update		etc Makefile update.c
vipw		etc Makefile vipw.c
ypbind		etc Makefile ypbind.c

# Sub-directories of "games"
adventure	games/adventure
backgammon	games/backgammon
battlestar	games/battlestar
boggle		games/boggle
chess		games/chess
ching		games/ching
cribbage	games/cribbage
fortune		games/fortune
hack		games/hack
hangman		games/hangman
hunt		games/hunt
life		games/life
mille		games/mille
monop		games/monop
quiz		games/quiz
robots		games/robots
sail		games/sail
snake		games/snake
trek		games/trek

# Programs that live in "games"
arithmetic	games Makefile arithmetic.c
banner		games Makefile banner.c
bcd		games Makefile bcd.c
bj		games Makefile bj.c
btlgammon	games Makefile btlgammon.c
canfield	games Makefile canfield.c
cfscores	games Makefile cfscores.c
craps		games Makefile craps.c
factor		games Makefile factor.c
fish		games Makefile fish.c
moo		games Makefile moo.c
number		games Makefile number.c
primes		games Makefile primes.c
rain		games Makefile rain.c
random		games Makefile random.c
worm		games Makefile worm.c
worms		games Makefile worms.c
wump		games Makefile wump.c

# Sub-directories of "lang"
adb		lang/adb
as		lang/as
boot		lang/boot
c2		lang/c2
cgrdr		lang/cgrdr
compile		lang/compile
cpp		lang/cpp
dbx		lang/dbx
f77		lang/f77
inline		lang/inline
iropt		lang/iropt
ld		lang/ld
lint		lang/lint
m4		lang/m4
pascal		lang/pascal
pcc		lang/pcc
ratfor		lang/ratfor
rtld		lang/rtld
tcov		lang/tcov
vroot		lang/vroot

# Programs that live in "lang"
ar		lang Makefile ar.c
nm		lang Makefile nm.c
ranlib		lang Makefile ranlib.c
size		lang Makefile size.c
strip		lang Makefile strip.c
symorder	lang Makefile symorder.c

# Sub-directories of "lib"
csu		lib/csu
libc		lib/libc

# Programs that live in "lib"
# NONE

# Sub-directories of "lib/libc"
libc_compat	lib/libc/compat
libc_crt	lib/libc/crt
libc_des	lib/libc/des
libc_gen	lib/libc/gen
libc_net	lib/libc/net
libc_inet	lib/libc/inet
libc_rpc	lib/libc/rpc
libc_stdio	lib/libc/stdio
libc_sun	lib/libc/sun
libc_sys	lib/libc/sys
libc_yp		lib/libc/yp

# Programs that live in "lib/libc"
# NONE

#Sub-directories of "local"
notes		local/notes

# Sub-directories of "man"
man1		man/man1
man2		man/man2
man3		man/man3
man4		man/man4
man5		man/man5
man6		man/man6
man7		man/man7
man8		man/man8
manl		man/manl

# Programs that live in "man"
# NONE

# Sub-directories of "old"
old_compact	old/compact
old_eyacc	old/eyacc
old_filemerge	old/filemerge
old_make	old/make

# Programs that live in "old"
old_analyze	old Makefile analyze.c
old_prmail	old Makefile prmail.c
old_pti		old Makefile pti.c
old_syslog	old Makefile syslog.c

# Sub-directories of "ucb"
Mail		ucb/Mail
compress	ucb/compress
error		ucb/error
ex		ucb/ex
ftp		ucb/ftp
gprof		ucb/gprof
indent		ucb/indent
lpr		ucb/lpr
more		ucb/more
msgs		ucb/msgs
netstat		ucb/netstat
rdist		ucb/rdist
talk		ucb/talk
tftp		ucb/tftp
tset		ucb/tset
vgrind		ucb/vgrind

# Programs that live in "ucb"
biff		ucb Makefile biff.c
checknr		ucb Makefile checknr.c
clear		ucb Makefile clear.c
colcrt		ucb Makefile colcrt.c
colrm		ucb Makefile colrm.c
ctags		ucb Makefile ctags.c
expand		ucb Makefile expand.c
finger		ucb Makefile finger.c
fold		ucb Makefile fold.c
from		ucb Makefile from.c
fsplit		ucb Makefile fsplit.c
gcore		ucb Makefile gcore.c
groups		ucb Makefile groups.c
head		ucb Makefile head.c
last		ucb Makefile last.c
lastcomm	ucb Makefile lastcomm.c
leave		ucb Makefile leave.c
logger		ucb Makefile logger.c
man_prog	ucb Makefile man.c
mkstr		ucb Makefile mkstr.c
printenv	ucb Makefile printenv.c
quota		ucb Makefile quota.c
rcp		ucb Makefile rcp.c
rdate		ucb Makefile rdate.c
rlogin		ucb Makefile rlogin.c
rsh		ucb Makefile rsh.c
rup		ucb Makefile rup.c
ruptime		ucb Makefile ruptime.c
rusers		ucb Makefile rusers.c
rwho		ucb Makefile rwho.c
sccs		ucb Makefile sccs.c
script		ucb Makefile script.c
soelim		ucb Makefile soelim.c
strings		ucb Makefile strings.c
tail		ucb Makefile tail.c
tcopy		ucb Makefile tcopy.c
telnet		ucb Makefile telnet.c
ul		ucb Makefile ul.c
unexpand	ucb Makefile unexpand.c
unifdef		ucb Makefile unifdef.c
users		ucb Makefile users.c
vmstat		ucb Makefile vmstat.c
w		ucb Makefile w.c
wc		ucb Makefile wc.c
what		ucb Makefile what.c
whatis		ucb Makefile whatis.c
whereis		ucb Makefile whereis.c
whoami		ucb Makefile whoami.c
whois		ucb Makefile whois.c
xstr		ucb Makefile xstr.c
yes		ucb Makefile yes.c

# Sub-directories of "usr.bin"
calendar	usr.bin/calendar
cflow		usr.bin/cflow
ctrace		usr.bin/ctrace
cxref		usr.bin/cxref
dc		usr.bin/dc
des		usr.bin/des
diff3		usr.bin/diff3
sun_eqn		usr.bin/eqn
file		usr.bin/file
find		usr.bin/find
graph		usr.bin/graph
lex		usr.bin/lex
sun_neqn	usr.bin/neqn
sun_nroff	usr.bin/nroff
sun_plot	usr.bin/plot
prof		usr.bin/prof
refer		usr.bin/refer
rpcgen		usr.bin/rpcgen
spell		usr.bin/spell
sun_tbl		usr.bin/tbl
tip		usr.bin/tip
trace		usr.bin/trace
sun_troff	usr.bin/troff
uucp		usr.bin/uucp
xsend		usr.bin/xsend
yacc		usr.bin/yacc

# Programs that live in "usr.bin"
basename	usr.bin Makefile basename.c
bc		usr.bin Makefile bc.c
cal		usr.bin Makefile cal.c
cb		usr.bin Makefile cb.c
checkeq		usr.bin Makefile checkeq.c
chkey		usr.bin Makefile chkey.c
click		usr.bin Makefile click.c
col		usr.bin Makefile col.c
comm		usr.bin Makefile comm.c
cpio		usr.bin Makefile cpio.c
crypt		usr.bin Makefile crypt.c
csplit		usr.bin Makefile csplit.c
cut		usr.bin Makefile cut.c
deroff		usr.bin Makefile deroff.c
egrep		usr.bin Makefile egrep.c
fgrep		usr.bin Makefile fgrep.c
getopt		usr.bin Makefile getopt.c
id		usr.bin Makefile id.c
installcmd	usr.bin Makefile installcmd.c
iostat		usr.bin Makefile iostat.c
ipcrm		usr.bin Makefile ipcrm.c
ipcs		usr.bin Makefile ipcs.c
join		usr.bin Makefile join.c
keylogin	usr.bin Makefile keylogin.c
logname		usr.bin Makefile logname.c
look		usr.bin Makefile look.c
mesg		usr.bin Makefile mesg.c
nl		usr.bin Makefile nl.c
pack		usr.bin Makefile pack.c
paste		usr.bin Makefile paste.c
ptx		usr.bin Makefile ptx.c
rev		usr.bin Makefile rev.c
screenblank	usr.bin Makefile screenblank.c
sdiff		usr.bin Makefile sdiff.c
sleep		usr.bin Makefile sleep.c
sort		usr.bin Makefile sort.c
spline		usr.bin Makefile spline.c
split		usr.bin Makefile split.c
sum		usr.bin Makefile sum.c
touch		usr.bin Makefile touch.c
tr		usr.bin Makefile tr.c
tsort		usr.bin Makefile tsort.c
tty		usr.bin Makefile tty.c
uniq		usr.bin Makefile uniq.c
units		usr.bin Makefile units.c
unpack		usr.bin Makefile unpack.c
xargs		usr.bin Makefile xargs.c
ypcat		usr.bin Makefile ypcat.c
ypmatch		usr.bin Makefile ypmatch.c
yppasswd	usr.bin Makefile yppasswd.c
ypwhich		usr.bin Makefile ypwhich.c

# Sub-directories of "usr.etc"
automount	usr.etc/automount
c2convert	usr.etc/c2convert
config		usr.etc/config
cron		usr.etc/cron
eeprom		usr.etc/eeprom
etherfind	usr.etc/etherfind
format		usr.etc/format
htable		usr.etc/htable
implog		usr.etc/implog
in.ftpd		-a usr.etc/in.ftpd ucb/ftp
in.named	usr.etc/in.named
in.rwhod	usr.etc/in.rwhod
keyserv		usr.etc/keyserv
ndbootd		usr.etc/ndbootd
praudit		usr.etc/praudit
rexd		usr.etc/rexd
rpc.bootparamd	usr.etc/rpc.bootparamd
termcap		usr.etc/termcap
upgrade		usr.etc/upgrade
yp		usr.etc/yp
zic		usr.etc/zic

# Programs that live in "usr.etc"
ac		usr.etc Makefile ac.c
accton		usr.etc Makefile accton.c
audit		usr.etc Makefile audit.c
auditd		usr.etc Makefile auditd.c
catman		usr.etc Makefile catman.c
chroot		usr.etc Makefile chroot.c
dcheck		usr.etc Makefile dcheck.c
devnm		usr.etc Makefile devnm.c
dumpfs		usr.etc Makefile dumpfs.c
edquota		usr.etc Makefile edquota.c
exportfs	usr.etc Makefile exportfs.c
foption		usr.etc Makefile foption.c
gettable	usr.etc Makefile gettable.c
grpck		usr.etc Makefile grpck.c
icheck		usr.etc Makefile icheck.c
in.comsat	usr.etc Makefile in.comsat.c
in.fingerd	usr.etc Makefile in.fingerd.c
in.rexecd	usr.etc Makefile in.rexecd.c
in.telnetd	usr.etc Makefile in.telnetd.c
in.tnamed	usr.etc Makefile in.tnamed.c
kgmon		usr.etc Makefile kgmon.c
link		usr.etc Makefile link.c
mkfile		usr.etc Makefile mkfile.c
mkproto		usr.etc Makefile mkproto.c
mount_lo	usr.etc Makefile mount_lo.c
ncheck		usr.etc Makefile ncheck.c
nfsstat		usr.etc Makefile nfsstat.c
ping		usr.etc Makefile ping.c
pwck		usr.etc Makefile pwck.c
quot		usr.etc Makefile quot.c
quotacheck	usr.etc Makefile quotacheck.c
quotaon		usr.etc Makefile quotaon.c
rarpd		usr.etc Makefile rarpd.c
repquota	usr.etc Makefile repquota.c
route		usr.etc Makefile route.c
rpc.etherd	usr.etc Makefile rpc.etherd.c
rpc.mountd	usr.etc Makefile rpc.mountd.c
rpc.pwdauthd	usr.etc Makefile rpc.pwdauthd.c
rpc.rquotad	usr.etc Makefile rpc.rquotad.c
rpc.rstatd	usr.etc Makefile rpc.rstatd.c
rpc.rusersd	usr.etc Makefile rpc.rusersd.c
rpc.rwalld	usr.etc Makefile rpc.rwalld.c
rpc.sprayd	usr.etc Makefile rpc.sprayd.c
rpc.yppasswdd	usr.etc Makefile rpc.yppasswdd.c
rpc.ypupdated	usr.etc Makefile rpc.ypupdated.c
rpcinfo		usr.etc Makefile rpcinfo.c
rwall		usr.etc Makefile rwall.c
sa		usr.etc Makefile sa.c
savecore	usr.etc Makefile savecore.c
showmount	usr.etc Makefile showmount.c
spray		usr.etc Makefile spray.c
swapon		usr.etc Makefile swapon.c
trpt		usr.etc Makefile trpt.c
tunefs		usr.etc Makefile tunefs.c
unlink		usr.etc Makefile unlink.c

# Sub-directories of "usr.lib"
bb_count	usr.lib/bb_count
fixedwidthfonts	usr.lib/fixedwidthfonts
libcurses	usr.lib/libcurses
libdbm		usr.lib/libdbm
libg		usr.lib/libg
libkvm		usr.lib/libkvm
libln		usr.lib/libln
liblwp		usr.lib/liblwp
libm		usr.lib/libm
libmp		usr.lib/libmp
libpixrect	usr.lib/libpixrect
libplot		usr.lib/libplot
libresolv	usr.lib/libresolv
librpcsvc	usr.lib/librpcsvc
libtermlib	usr.lib/libtermlib
liby		usr.lib/liby
me		usr.lib/me
ms		usr.lib/ms
sendmail	usr.lib/sendmail
sun_tmac	usr.lib/tmac
vfont		usr.lib/vfont

# Programs that live in "usr.lib"
getNAME		usr.lib Makefile getNAME
makekey		usr.lib Makefile makekey

# Sub-directories of "5bin"
5diff3		5bin/diff3
5m4		5bin/m4

# Sub-directories of "5bin", but use sources from other places
5cxref		-a 5bin/cxref usr.bin/cxref
5sed		-a 5bin/sed bin/sed
5lint		-a 5bin/lint lang/pcc lang/lint

# Programs that live in "5bin"
5banner		5bin Makefile banner.c
5cat		5bin Makefile cat.c
5du		5bin Makefile du.c
5echo		5bin Makefile echo.c
5expr		5bin Makefile expr.c
5ls		5bin Makefile ls.c
5nohup		5bin Makefile nohup.c
5od		5bin Makefile od.c
5pg		5bin Makefile pg.c
5pr		5bin Makefile pr.c
5sum		5bin Makefile sum.c
5tabs		5bin Makefile tabs.c
5time		5bin Makefile time.c
5tr		5bin Makefile tr.c
5uname		5bin Makefile uname.c

# Programs that live in "5bin", but use sources from other places
5chmod		-a 5bin/Makefile bin/chmod.c
5date		-a 5bin/Makefile bin/date.c
5grep		-a 5bin/Makefile bin/grep.c
5stty		-a 5bin/Makefile bin/stty.c
5col		-a 5bin/Makefile usr.bin/col.c
5sort		-a 5bin/Makefile usr.bin/sort.c
5touch		-a 5bin/Makefile usr.bin/touch.c

# Sub-directories of "5lib"
5compile	5lib/compile
5libcurses	5lib/libcurses
5liby		5lib/liby
5terminfo	5lib/terminfo

# Programs that live in "5lib"
# NONE
OpenPOWER on IntegriCloud