Remove groff from base

All manpages in base are now compatible with mandoc(1), all roff documentation
will be relocated in the doc tree. man(1) can now use groff from the ports tree
if it needs.

Also remove checknr(1) and colcrt(1) which are only useful with groff.

Approved by:	(no objections on the mailing lists)
This commit is contained in:
Baptiste Daroussin
2017-06-07 23:00:34 +00:00
parent e0e0323354
commit 738919c039
994 changed files with 491 additions and 447356 deletions
-1
View File
@@ -15,7 +15,6 @@ SUBDIR.${MK_GNU_GREP}+= grep
SUBDIR.${MK_GDB}+= gdb
SUBDIR_DEPEND_gdb= binutils
SUBDIR.${MK_GPL_DTC}+= dtc
SUBDIR.${MK_GROFF}+= groff
SUBDIR.${MK_TESTS}+= tests
SUBDIR_PARALLEL=
-11
View File
@@ -1,11 +0,0 @@
# $FreeBSD$
SUBDIR= contrib font man src tmac
.for subdir in ${SUBDIR:Nsrc}
SUBDIR_DEPEND_${subdir}= src
.endfor
SUBDIR_PARALLEL=
.include <bsd.subdir.mk>
-145
View File
@@ -1,145 +0,0 @@
# $FreeBSD$
BINDIR?= /usr/bin
SHELL= /bin/sh
PACKAGE= groff
# Define `page' to be letter if your PostScript printer uses 8.5x11
# paper (USA) and define it to be A4, if it uses A4 paper (rest of the
# world).
PAGE=letter
# Normally the Postscript driver, grops, produces output that conforms
# to version 3.0 of the Adobe Document Structuring Conventions.
# Unfortunately some spoolers and previewers can't handle such output.
# The BROKEN_SPOOLER_FLAGS variable tells grops what it should do to
# make its output acceptable to such programs. This variable controls
# only the default behaviour of grops; the behaviour can be changed at
# runtime by the grops -b option (and so by groff -P-b).
# Use a value of 0 if your spoolers and previewers are able to handle
# conforming PostScript correctly.
# Add 1 if no %%{Begin,End}DocumentSetup comments should be generated;
# this is needed for early versions of TranScript that get confused by
# anything between the %%EndProlog line and the first %%Page: comment.
# Add 2 if lines in included files beginning with %! should be
# stripped out; this is needed for the OpenWindows 2.0 pageview previewer.
# Add 4 if %%Page, %%Trailer and %%EndProlog comments should be
# stripped out of included files; this is needed for spoolers that
# don't understand the %%{Begin,End}Document comments. I suspect this
# includes early versions of TranScript.
# Add 8 if the first line of the PostScript output should be %!PS-Adobe-2.0
# rather than %!PS-Adobe-3.0; this is needed when using Sun's Newsprint
# with a printer that requires page reversal.
BROKEN_SPOOLER_FLAGS=7
# DEVICE is the default device.
DEVICE=ps
# PSPRINT is the command to use for printing a PostScript file,
# for example `lpr'.
PSPRINT=lpr
# DVIPRINT is the command to use for printing a TeX dvi file,
# for example `lpr -d'.
DVIPRINT=lpr -d
########################################################################
# Don't touch...
g=
tmac_s_prefix=
tmac_m_prefix=
tmac_an_prefix=
fontdir=/usr/share/groff_font
localfontdir=$(fontdir)
legacyfontdir=$(fontdir)
tmacdir=/usr/share/tmac
systemtmacdir=/usr/share/tmac
localtmacdir=/usr/share/tmac
docdir=/usr/src/contrib/groff/doc
exampledir=XXX
htmldocdir=XXX
pdfdocdir=XXX
indexext=.i
common_words_file=/usr/share/dict/eign
indexdir=/usr/share/dict/papers
indexname=Ind
########################################################################
# Libraries
LIBGROFF= ${.OBJDIR}/${TOPREL}/src/libs/libgroff/libgroff.a
LIBDRIVER= ${.OBJDIR}/${TOPREL}/src/libs/libdriver/libdriver.a
LIBBIB= ${.OBJDIR}/${TOPREL}/src/libs/libbib/libbib.a
CFLAGS+= -DHAVE_CONFIG_H
CFLAGS+= -I${GROFF_DIST}/src/include -I${.CURDIR}/${TOPREL}/src/include
CXXFLAGS+= -fno-rtti -fno-exceptions
.y.o:
$(YACC) $(YFLAGS) $(.IMPSRC)
mv -f y.tab.c $(.PREFIX).cpp
mv -f y.tab.h $(.PREFIX)_tab.h
${CXX} ${CXXFLAGS} -c $(.PREFIX).cpp -o ${.TARGET}
.y.cpp:
$(YACC) $(YFLAGS) $(.IMPSRC)
mv -f y.tab.c $(.PREFIX).cpp
mv -f y.tab.h $(.PREFIX)_tab.h
.SUFFIXES: .man .1 .2 .3 .4 .5 .6 .7 .8
version=`cat $(GROFF_DIST)/VERSION`
revision=`sed -e 's/^0$$//' -e 's/^[1-9].*$$/.&/' $(GROFF_DIST)/REVISION`
.man.8 .man.7 .man.6 .man.5 .man.4 .man.3 .man.2 .man.1:
@${ECHO} Making $@ from $<
@-rm -f $@
@sed -e "s;@BINDIR@;${BINDIR};g" \
-e "s;@FONTDIR@;$(fontdir);g" \
-e "s;@LOCALFONTDIR@;$(localfontdir);g" \
-e "s;@LEGACYFONTDIR@;$(legacyfontdir);g" \
-e "s;@MACRODIR@;$(tmacdir);g" \
-e "s;@SYSTEMMACRODIR@;$(systemtmacdir);g" \
-e "s;@LOCALMACRODIR@;$(localtmacdir);g" \
-e "s;@DOCDIR@;$(docdir);g" \
-e "s;@EXAMPLEDIR@;$(exampledir);g" \
-e "s;@HTMLDOCDIR@;$(htmldocdir);g" \
-e "s;@PDFDOCDIR@;$(pdfdocdir);g" \
-e "s;@DEVICE@;$(DEVICE);g" \
-e "s;@DEFAULT_INDEX@;$(indexdir)/$(indexname);g" \
-e "s;@DEFAULT_INDEX_NAME@;$(indexname);g" \
-e "s;@INDEX_SUFFIX@;$(indexext);g" \
-e "s;@COMMON_WORDS_FILE@;$(common_words_file);g" \
-e "s;@MAN1EXT@;1;g" \
-e "s;@MAN5EXT@;5;g" \
-e "s;@MAN7EXT@;7;g" \
-e "s;@TMAC_S_PREFIX@;$(tmac_s_prefix);g" \
-e "s;@TMAC_M_PREFIX@;$(tmac_m_prefix);g" \
-e "s;@TMAC_AN_PREFIX@;$(tmac_an_prefix);g" \
-e "s;@TMAC_MDIR@;$(tmacdir)/mm;g" \
-e "s;@BROKEN_SPOOLER_FLAGS@;$(BROKEN_SPOOLER_FLAGS);g" \
-e "s;@VERSION@;$(version)$(revision);g" \
-e "s;@MDATE@;$(MDATE);g" \
-e "s;@g@;$(g);g" \
-e "s;@G@;`echo $(g) | LC_ALL=C tr a-z A-Z`;g" \
$< >$@
.SUFFIXES: .sh .pl
.sh .pl:
@${ECHO} Making ${.TARGET} from ${.IMPSRC}
@rm -f ${.TARGET}
@sed -e "s|@BINDIR@|${BINDIR}|g" \
-e 's|@GROFF_BIN_PATH_SETUP@|GROFF_RUNTIME="$${GROFF_BIN_PATH=${BINDIR}}:"|g' \
-e "s;@FONTDIR@;$(fontdir);g" \
-e "s|@SEP@|:|g" \
-e "s|@VERSION@|$(version)$(revision)|" \
-e "s|@g@|$(g)|g" \
${.IMPSRC} >${.TARGET}
TOPREL?= ..
GROFF_DIST= ${.CURDIR}/${TOPREL}/../../../contrib/groff
DIST_SUBDIR?= ${.CURDIR:T}
DIST_DIR= ${GROFF_DIST}/${DIST_SUBDIR}
MDATE!= sh ${.CURDIR}/${TOPREL}/mdate.sh ${GROFF_DIST}/ChangeLog
.PATH: ${DIST_DIR}
-5
View File
@@ -1,5 +0,0 @@
# $FreeBSD$
SUBDIR= mm
.include <bsd.subdir.mk>
-6
View File
@@ -1,6 +0,0 @@
# $FreeBSD$
DIST_SUBDIR= contrib/${.CURDIR:T}
TOPREL= ../..
.include "../Makefile.inc"
@@ -1,7 +0,0 @@
# $FreeBSD$
SCRIPTS= groffer
MAN= groffer.1
CLEANFILES= ${SCRIPTS} ${MAN}
.include <bsd.prog.mk>
-30
View File
@@ -1,30 +0,0 @@
# $FreeBSD$
SCRIPTS= mmroff.pl
MAN= mmroff.1
TMACDIR?= ${SHAREDIR}/tmac
FILES= m.tmac mm.tmac mse.tmac mmse.tmac
FILESDIR_m.tmac=${TMACDIR}
FILESDIR_mse.tmac=${TMACDIR}
FILES+= 0.MT 5.MT 4.MT ms.cov se_ms.cov
FILESDIR= ${TMACDIR}/mm
LOCALE= locale se_locale
MAN+= groff_mm.7 groff_mmse.7
MLINKS= groff_mm.7 mm.7 groff_mmse.7 mmse.7
CLEANFILES+= ${MAN}
.include <bsd.prog.mk>
.PATH: ${DIST_DIR}/mm
beforeinstall:
.for locale in ${LOCALE}
.if !exists(${DESTDIR}${TMACDIR}/mm/${locale})
${INSTALL} -o ${FILESOWN} -g ${FILESGRP} -m ${FILESMODE} \
/dev/null ${DESTDIR}${TMACDIR}/mm/${locale}
.endif
.endfor
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-7
View File
@@ -1,7 +0,0 @@
# $FreeBSD$
SUBDIR= devX100 devX100-12 devX75 devX75-12 \
devascii devcp1047 devdvi devhtml devkoi8-r \
devlatin1 devlbp devlj4 devps devutf8
.include <bsd.subdir.mk>
-11
View File
@@ -1,11 +0,0 @@
# $FreeBSD$
FILES= ${DEVFILES}
FILESDIR?= ${fontdir}/dev${DEV}
SCRIPTS= ${DEVSCRIPTS}
SCRIPTSDIR?= ${fontdir}/dev${DEV}
.for script in ${SCRIPTS}
SCRIPTSNAME_${script:T}= ${script:T}
.endfor
.include <bsd.prog.mk>
-6
View File
@@ -1,6 +0,0 @@
# $FreeBSD$
DIST_SUBDIR= font/${.CURDIR:T}
TOPREL= ../..
.include "../Makefile.inc"
-33
View File
@@ -1,33 +0,0 @@
# $FreeBSD$
FONTS?=R I B BI S L CW
DEVFILES=$(FONTS) DESC
CLEANFILES=$(DEVFILES)
RES=240
CPI=10
LPI=6
$(FONTS): R.proto
@${ECHO} Making ${.TARGET}
@(charwidth=`expr $(RES) / $(CPI)` ; \
sed -e "s/^name [A-Z]*$$/name ${.TARGET}/" \
-e "s/^\\([^ ]*\\) [0-9]+ /\\1 $$charwidth /" \
-e "s/^spacewidth [0-9]+$$/spacewidth $$charwidth/" \
-e "s/^internalname .*$$/internalname $@/" \
-e "/^internalname/s/BI/3/" \
-e "/^internalname/s/B/2/" \
-e "/^internalname/s/I/1/" \
-e "/^internalname .*[^ 0-9]/d" \
${.ALLSRC} >$.${.TARGET})
DESC: DESC.proto
@${ECHO} Making ${.TARGET}
@sed -e "s/^res .*$$/res $(RES)/" \
-e "s/^hor .*$$/hor `expr $(RES) / $(CPI)`/" \
-e "s/^vert .*$$/vert `expr $(RES) / $(LPI)`/" \
-e "s/^fonts .*$$/fonts `set $(FONTS); echo $$#` $(FONTS)/" \
${.ALLSRC} >${.TARGET}
.if defined(DESC_EXT)
@${DESC_EXT} >>${.TARGET}
.endif
@@ -1,5 +0,0 @@
# $FreeBSD$
.include "../Makefile.inc"
.include "${DIST_DIR}/Makefile.sub"
.include "../Makefile.dev"
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-5
View File
@@ -1,5 +0,0 @@
# $FreeBSD$
.include "../Makefile.inc"
.include "${DIST_DIR}/Makefile.sub"
.include "../Makefile.dev"
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,5 +0,0 @@
# $FreeBSD$
.include "../Makefile.inc"
.include "${DIST_DIR}/Makefile.sub"
.include "../Makefile.dev"
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-5
View File
@@ -1,5 +0,0 @@
# $FreeBSD$
.include "../Makefile.inc"
.include "${DIST_DIR}/Makefile.sub"
.include "../Makefile.dev"
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-6
View File
@@ -1,6 +0,0 @@
# $FreeBSD$
DEV= ascii
.include "../Makefile.tty"
.include "../Makefile.dev"
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,6 +0,0 @@
# $FreeBSD$
DEV= cp1047
.include "../Makefile.tty"
.include "../Makefile.dev"
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-28
View File
@@ -1,28 +0,0 @@
# $FreeBSD$
DEV= dvi
DEVFILES= DESC \
TR TI TB TBI CW CWI HR HI HB HBI \
TREC TIEC TBEC TBIEC CWEC CWIEC HREC HIEC HBEC HBIEC \
TRTC TITC TBTC TBITC CWTC CWITC HRTC HITC HBTC HBITC \
MI S EX SA SB SC \
generate/Makefile \
generate/msam.map generate/msbm.map \
generate/texb.map generate/texex.map generate/texi.map \
generate/texmi.map generate/texr.map generate/texsy.map \
generate/textt.map generate/textex.map generate/ec.map \
generate/tc.map
DEVSCRIPTS= generate/CompileFonts
CLEANFILES+= DESC
DESC: DESC.in
cat ${DIST_DIR}/DESC.in >${.TARGET}
if test "${PAGE}" = A4; then \
echo "papersize a4" >>${.TARGET}; \
else \
echo "papersize letter" >>${.TARGET}; \
fi
test -z '${DVIPRINT}' || echo print '${DVIPRINT}' >>${.TARGET}
.include "../Makefile.dev"
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-9
View File
@@ -1,9 +0,0 @@
# $FreeBSD$
DEV= html
FONTS= R I B BI CR CI CB CBI S
GHOSTSCRIPT= /usr/local/bin/gs
DESC_EXT= echo "image_generator ${GHOSTSCRIPT}"
.include "../Makefile.tty"
.include "../Makefile.dev"
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,8 +0,0 @@
res 240
hor 24
vert 40
unitwidth 10
sizes 10 0
fonts 6 R I B BI S L
tcommand
postpro grotty
@@ -1,6 +0,0 @@
# $FreeBSD$
DEV= koi8-r
.include "../Makefile.tty"
.include "../Makefile.dev"
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-332
View File
@@ -1,332 +0,0 @@
# $FreeBSD$
name R
internalname 0
spacewidth 24
charset
--- 24 0 0000
--- 24 0 0001
--- 24 0 0002
--- 24 0 0003
--- 24 0 0004
--- 24 0 0005
--- 24 0 0006
--- 24 0 0007
--- 24 0 0010
--- 24 0 0011
--- 24 0 0012
--- 24 0 0013
--- 24 0 0014
--- 24 0 0015
--- 24 0 0016
--- 24 0 0017
--- 24 0 0020
--- 24 0 0021
--- 24 0 0022
--- 24 0 0023
--- 24 0 0024
--- 24 0 0025
--- 24 0 0026
--- 24 0 0027
--- 24 0 0030
--- 24 0 0031
--- 24 0 0032
--- 24 0 0033
--- 24 0 0034
--- 24 0 0035
--- 24 0 0036
--- 24 0 0037
! 24 0 0041
" 24 0 0042
dq "
lq "
rq "
# 24 0 0043
sh "
$ 24 0 0044
Do "
% 24 0 0045
& 24 0 0046
' 24 0 0047
aa "
fm "
aq "
cq "
( 24 0 0050
) 24 0 0051
* 24 0 0052
** "
+ 24 0 0053
pl "
, 24 0 0054
\- 24 0 0055
hy "
- "
mi "
en "
. 24 0 0056
/ 24 0 0057
sl "
f/ "
0 24 0 0060
1 24 0 0061
2 24 0 0062
3 24 0 0063
4 24 0 0064
5 24 0 0065
6 24 0 0066
7 24 0 0067
8 24 0 0070
9 24 0 0071
: 24 0 0072
; 24 0 0073
< 24 0 0074
la "
fo "
= 24 0 0075
eq "
> 24 0 0076
ra "
fc "
? 24 0 0077
@ 24 0 0100
at "
A 24 0 0101
*A "
B 24 0 0102
*B "
C 24 0 0103
D 24 0 0104
E 24 0 0105
*E "
F 24 0 0106
G 24 0 0107
H 24 0 0110
*Y "
I 24 0 0111
*I "
J 24 0 0112
K 24 0 0113
*K "
L 24 0 0114
M 24 0 0115
*M "
N 24 0 0116
*N "
O 24 0 0117
ci "
*O "
P 24 0 0120
*R "
Q 24 0 0121
R 24 0 0122
S 24 0 0123
T 24 0 0124
*T "
U 24 0 0125
V 24 0 0126
W 24 0 0127
X 24 0 0130
*X "
Y 24 0 0131
*U "
Z 24 0 0132
*Z "
[ 24 0 0133
lB "
\ 24 0 0134
rs "
] 24 0 0135
rB "
a^ 24 0 0136
^ "
ha "
_ 24 0 0137
ru "
ul "
` 24 0 0140
oq "
ga "
a 24 0 0141
b 24 0 0142
c 24 0 0143
d 24 0 0144
e 24 0 0145
f 24 0 0146
g 24 0 0147
h 24 0 0150
i 24 0 0151
j 24 0 0152
k 24 0 0153
l 24 0 0154
m 24 0 0155
n 24 0 0156
o 24 0 0157
*o "
p 24 0 0160
q 24 0 0161
r 24 0 0162
s 24 0 0163
t 24 0 0164
u 24 0 0165
v 24 0 0166
w 24 0 0167
x 24 0 0170
mu "
tmu "
y 24 0 0171
z 24 0 0172
lC 24 0 0173
{ "
ba 24 0 0174
or "
bv "
br "
| "
rC 24 0 0175
} "
a~ 24 0 0176
~ "
ap "
ti "
--- 24 0 0177
u2500 24 0 0200
u2502 24 0 0201
br "
u250C 24 0 0202
u2510 24 0 0203
u2514 24 0 0204
u2518 24 0 0205
u251C 24 0 0206
u2524 24 0 0207
u252C 24 0 0210
u2534 24 0 0211
u253C 24 0 0212
u2580 24 0 0213
u2584 24 0 0214
u2588 24 0 0215
u258C 24 0 0216
u2590 24 0 0217
u2591 24 0 0220
u2592 24 0 0221
u2593 24 0 0222
u2320 24 0 0223
u25A0 24 0 0224
u2219 24 0 0225
u221A 24 0 0226
sr "
sqrt "
u2248 24 0 0227
~~ "
~= "
u2264 24 0 0230
<= "
u2265 24 0 0231
>= "
u00A0 24 0 0232
u2321 24 0 0233
u00B0 24 0 0234
de "
u00B2 24 0 0235
S2 "
u00B7 24 0 0236
pc "
u00F7 24 0 0237
di "
tdi "
u2550 24 0 0240
u2551 24 0 0241
u2552 24 0 0242
u0435_0308 24 0 0243
u2553 24 0 0244
u2554 24 0 0245
u2555 24 0 0246
u2556 24 0 0247
u2557 24 0 0250
u2558 24 0 0251
u2559 24 0 0252
u255A 24 0 0253
u255B 24 0 0254
u255C 24 0 0255
u255D 24 0 0256
u255E 24 0 0257
u255F 24 0 0260
u2560 24 0 0261
u2561 24 0 0262
u0415_0308 24 0 0263
u2562 24 0 0264
u2563 24 0 0265
u2564 24 0 0266
u2565 24 0 0267
u2566 24 0 0270
u2567 24 0 0271
u2568 24 0 0272
u2569 24 0 0273
u256A 24 0 0274
u256B 24 0 0275
u256C 24 0 0276
u00A9 24 0 0277
co "
u044E 24 0 0300
u0430 24 0 0301
u0431 24 0 0302
u0446 24 0 0303
u0434 24 0 0304
u0435 24 0 0305
u0444 24 0 0306
u0433 24 0 0307
u0445 24 0 0310
u0438 24 0 0311
u0438_0306 24 0 0312
u043A 24 0 0313
u043B 24 0 0314
u043C 24 0 0315
u043D 24 0 0316
u043E 24 0 0317
u043F 24 0 0320
u044F 24 0 0321
u0440 24 0 0322
u0441 24 0 0323
u0442 24 0 0324
u0443 24 0 0325
u0436 24 0 0326
u0432 24 0 0327
u044C 24 0 0330
u044B 24 0 0331
u0437 24 0 0332
u0448 24 0 0333
u044D 24 0 0334
u0449 24 0 0335
u0447 24 0 0336
u044A 24 0 0337
u042E 24 0 0340
u0410 24 0 0341
u0411 24 0 0342
u0426 24 0 0343
u0414 24 0 0344
u0415 24 0 0345
u0424 24 0 0346
u0413 24 0 0347
u0425 24 0 0350
u0418 24 0 0351
u0418_0306 24 0 0352
u041A 24 0 0353
u041B 24 0 0354
u041C 24 0 0355
u041D 24 0 0356
u041E 24 0 0357
u041F 24 0 0360
u042F 24 0 0361
u0420 24 0 0362
u0421 24 0 0363
u0422 24 0 0364
u0423 24 0 0365
u0416 24 0 0366
u0412 24 0 0367
u042C 24 0 0370
u042B 24 0 0371
u0417 24 0 0372
u0428 24 0 0373
u042D 24 0 0374
u0429 24 0 0375
u0427 24 0 0376
u042A 24 0 0377
@@ -1,6 +0,0 @@
# $FreeBSD$
DEV= latin1
.include "../Makefile.tty"
.include "../Makefile.dev"
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-19
View File
@@ -1,19 +0,0 @@
# $FreeBSD$
DEV= lbp
LBPPRINT= ${PSPRINT}
DEVFILES= DESC HB HBI HI HR HNB HNBI HNI HNR \
TB TBI TI TR CR CB CI ER EB EI
CLEANFILES+= DESC
DESC: DESC.in
cat ${.ALLSRC} >${.TARGET}
if test "${PAGE}" = A4; then \
echo "papersize a4" >>${.TARGET}; \
else \
echo "papersize letter" >>${.TARGET}; \
fi
test -z '${LBPPRINT}' || echo print '${LBPPRINT}' >>${.TARGET}
.include "../Makefile.dev"
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-28
View File
@@ -1,28 +0,0 @@
# $FreeBSD$
DEV= lj4
LJ4RES= 1200
LJ4PRINT= ${PSPRINT}
DEVFILES= DESC \
AB ABI AI AR \
ALBB ALBR AOB AOI AOR CB CBI CI CR GB GBI GI GR \
LGB LGI LGR OB OBI OI OR TB TBI TI TR \
TNRB TNRBI TNRI TNRR \
UB UBI UI UR \
UCB UCBI UCI UCR CLARENDON CORONET MARIGOLD S \
SYMBOL WINGDINGS
CLEANFILES+= DESC
DESC: DESC.in
echo "res ${LJ4RES}" >${.TARGET}
echo "unitwidth `expr 7620000 / ${LJ4RES}`" >>${.TARGET}
cat ${.ALLSRC} >>${.TARGET}
if test "${PAGE}" = A4; then \
echo "papersize a4" >>${.TARGET}; \
else \
echo "papersize letter" >>${.TARGET}; \
fi
test -z '${LJ4PRINT}' || echo print '${LJ4PRINT}' >>${.TARGET}
.include "../Makefile.dev"
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-38
View File
@@ -1,38 +0,0 @@
# $FreeBSD$
DEV= ps
DISTFILES= text.enc download \
S ZD ZDR SS AB ABI AI AR BMB BMBI BMI BMR \
CB CBI CI CR HB HBI HI HR HNB HNBI HNI HNR \
NB NBI NI NR PB PBI PI PR TB TBI TI TR ZCMI \
EURO freeeuro.pfa
PSFILES= prologue symbolsl.pfa zapfdr.pfa
DEVGENFILES= generate/Makefile generate/dingbats.map \
generate/dingbats.rmap generate/lgreekmap \
generate/symbolchars generate/symbolsl.afm generate/textmap
DEVGENSCRIPTS= generate/afmname generate/symbol.sed
DEVFILES= DESC ${PSFILES} ${DISTFILES} ${DEVGENFILES}
DEVSCRIPTS= ${DEVGENSCRIPTS}
CLEANFILES+= DESC ${PSFILES}
DESC: DESC.in
-rm -f DESC
cat ${DIST_DIR}/DESC.in >DESC
echo broken ${BROKEN_SPOOLER_FLAGS} >>DESC
if test "${PAGE}" = A4; then \
echo "papersize a4" >>DESC; \
else \
echo "papersize letter" >>DESC; \
fi
test -z '${PSPRINT}' || echo print '${PSPRINT}' >>DESC
${PSFILES}:
-rm -f $@
sed -f ${DIST_DIR}/psstrip.sed $? >$@
.include "../Makefile.dev"
prologue: ${DIST_DIR}/prologue.ps
zapfdr.pfa: ${DIST_DIR}/zapfdr.ps
symbolsl.pfa: ${DIST_DIR}/symbolsl.ps
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-6
View File
@@ -1,6 +0,0 @@
# $FreeBSD$
DEV= utf8
.include "../Makefile.tty"
.include "../Makefile.dev"
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-8
View File
@@ -1,8 +0,0 @@
# $FreeBSD$
MAN= groff_font.5 groff_out.5 groff_tmac.5
MLINKS= groff_tmac.5 tmac.5
MAN+= ditroff.7 groff.7 groff_char.7 groff_diff.7 roff.7
CLEANFILES= ${MAN}
.include <bsd.prog.mk>
-11
View File
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-8
View File
@@ -1,8 +0,0 @@
#!/bin/sh
# $FreeBSD$
set -e
test -r "$1"
export LC_ALL=C
changelog_date=$(sed -E -n '1s/^([0-9]{4}-[0-9]{2}-[0-9]{2}).*$/\1/p' "$1")
echo $(date -j -f %Y-%m-%d +"%e %B %Y" $changelog_date)
-11
View File
@@ -1,11 +0,0 @@
# $FreeBSD$
SUBDIR= libs devices preproc roff utils
SUBDIR_PARALLEL=
.for subdir in ${SUBDIR:Nlibs}
SUBDIR_DEPEND_${subdir}= libs
.endfor
.include <bsd.subdir.mk>
-7
View File
@@ -1,7 +0,0 @@
# $FreeBSD$
SUBDIR= grodvi grohtml grolbp grolj4 grops grotty
SUBDIR_PARALLEL=
.include <bsd.subdir.mk>
@@ -1,6 +0,0 @@
# $FreeBSD$
TOPREL= ../../..
DIST_SUBDIR= src/devices/${.CURDIR:T}
.include "../../Makefile.inc"
@@ -1,10 +0,0 @@
# $FreeBSD$
PROG_CXX= grodvi
SRCS= dvi.cpp
DPADD= ${LIBDRIVER} ${LIBGROFF}
LDADD= ${LIBDRIVER} ${LIBGROFF}
LIBADD= m
CLEANFILES= ${MAN}
.include <bsd.prog.mk>
@@ -1,23 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
gnu/lib/csu \
gnu/lib/libgcc \
gnu/usr.bin/groff/src/libs/libdriver \
gnu/usr.bin/groff/src/libs/libgroff \
include \
include/xlocale \
lib/${CSU_DIR} \
lib/libc \
lib/libc++ \
lib/libcompiler_rt \
lib/libcxxrt \
lib/msun \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,10 +0,0 @@
# $FreeBSD$
PROG_CXX= post-grohtml
SRCS= post-html.cpp html-table.cpp html-text.cpp output.cpp
DPADD= ${LIBDRIVER} ${LIBGROFF}
LDADD= ${LIBDRIVER} ${LIBGROFF}
LIBADD= m
MAN=
.include <bsd.prog.mk>
@@ -1,23 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
gnu/lib/csu \
gnu/lib/libgcc \
gnu/usr.bin/groff/src/libs/libdriver \
gnu/usr.bin/groff/src/libs/libgroff \
include \
include/xlocale \
lib/${CSU_DIR} \
lib/libc \
lib/libc++ \
lib/libcompiler_rt \
lib/libcxxrt \
lib/msun \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,10 +0,0 @@
# $FreeBSD$
PROG_CXX= grolbp
SRCS= lbp.cpp
DPADD= ${LIBDRIVER} ${LIBGROFF}
LDADD= ${LIBDRIVER} ${LIBGROFF}
LIBADD= m
CLEANFILES= ${MAN}
.include <bsd.prog.mk>
@@ -1,23 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
gnu/lib/csu \
gnu/lib/libgcc \
gnu/usr.bin/groff/src/libs/libdriver \
gnu/usr.bin/groff/src/libs/libgroff \
include \
include/xlocale \
lib/${CSU_DIR} \
lib/libc \
lib/libc++ \
lib/libcompiler_rt \
lib/libcxxrt \
lib/msun \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,11 +0,0 @@
# $FreeBSD$
PROG_CXX= grolj4
MAN= grolj4.1 lj4_font.5
SRCS= lj4.cpp
DPADD= ${LIBDRIVER} ${LIBGROFF}
LDADD= ${LIBDRIVER} ${LIBGROFF}
LIBADD= m
CLEANFILES= ${MAN}
.include <bsd.prog.mk>
@@ -1,23 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
gnu/lib/csu \
gnu/lib/libgcc \
gnu/usr.bin/groff/src/libs/libdriver \
gnu/usr.bin/groff/src/libs/libgroff \
include \
include/xlocale \
lib/${CSU_DIR} \
lib/libc \
lib/libc++ \
lib/libcompiler_rt \
lib/libcxxrt \
lib/msun \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,10 +0,0 @@
# $FreeBSD$
PROG_CXX= grops
SRCS= ps.cpp psrm.cpp
DPADD= ${LIBDRIVER} ${LIBGROFF}
LDADD= ${LIBDRIVER} ${LIBGROFF}
LIBADD= m
CLEANFILES= ${MAN}
.include <bsd.prog.mk>
@@ -1,23 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
gnu/lib/csu \
gnu/lib/libgcc \
gnu/usr.bin/groff/src/libs/libdriver \
gnu/usr.bin/groff/src/libs/libgroff \
include \
include/xlocale \
lib/${CSU_DIR} \
lib/libc \
lib/libc++ \
lib/libcompiler_rt \
lib/libcxxrt \
lib/msun \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,10 +0,0 @@
# $FreeBSD$
PROG_CXX= grotty
SRCS= tty.cpp
DPADD= ${LIBDRIVER} ${LIBGROFF}
LDADD= ${LIBDRIVER} ${LIBGROFF}
LIBADD= m
CLEANFILES= ${MAN}
.include <bsd.prog.mk>
@@ -1,23 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
gnu/lib/csu \
gnu/lib/libgcc \
gnu/usr.bin/groff/src/libs/libdriver \
gnu/usr.bin/groff/src/libs/libgroff \
include \
include/xlocale \
lib/${CSU_DIR} \
lib/libc \
lib/libc++ \
lib/libcompiler_rt \
lib/libcxxrt \
lib/msun \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-220
View File
@@ -1,220 +0,0 @@
/* $FreeBSD$ */
/* src/include/config.h. Generated by configure. */
/* src/include/config.hin. Generated from configure.ac by autoheader. */
/* Define if your C++ doesn't understand `delete []'. */
/* #undef ARRAY_DELETE_NEEDS_SIZE */
/* Define if you have a C++ <inttypes.h>. */
#define HAVE_CC_INTTYPES_H 1
/* Define if you have a C++ <limits.h>. */
#define HAVE_CC_LIMITS_H 1
/* Define if you have a C++ <osfcn.h>. */
/* #undef HAVE_CC_OSFCN_H */
/* Define to 1 if you have the declaration of `sys_siglist', and to 0 if you
don't. */
#define HAVE_DECL_SYS_SIGLIST 0
/* Define to 1 if you have the <direct.h> header file. */
/* #undef HAVE_DIRECT_H */
/* Define to 1 if you have the <dirent.h> header file. */
#define HAVE_DIRENT_H 1
/* Define to 1 if you have the `fmod' function. */
#define HAVE_FMOD 1
/* Define to 1 if you have the `getcwd' function. */
#define HAVE_GETCWD 1
/* Define to 1 if you have the `getpagesize' function. */
#define HAVE_GETPAGESIZE 1
/* Define to 1 if you have the `gettimeofday' function. */
#define HAVE_GETTIMEOFDAY 1
/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1
/* Define to 1 if you have the `isatty' function. */
#define HAVE_ISATTY 1
/* Define to 1 if you have the `kill' function. */
#define HAVE_KILL 1
/* Define to 1 if you have the <limits.h> header file. */
#define HAVE_LIMITS_H 1
/* Define to 1 if you have the <math.h> header file. */
#define HAVE_MATH_H 1
/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1
/* Define if you have mkstemp(). */
#define HAVE_MKSTEMP 1
/* Define to 1 if you have a working `mmap' system call. */
#define HAVE_MMAP 1
/* Define to 1 if you have the <process.h> header file. */
/* #undef HAVE_PROCESS_H */
/* Define to 1 if you have the `putenv' function. */
#define HAVE_PUTENV 1
/* Define to 1 if you have the `rename' function. */
#define HAVE_RENAME 1
/* Define to 1 if you have the `setlocale' function. */
#define HAVE_SETLOCALE 1
/* Define to 1 if you have the `snprintf' function. */
#define HAVE_SNPRINTF 1
/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1
/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1
/* Define to 1 if you have the `strcasecmp' function. */
#define HAVE_STRCASECMP 1
/* Define to 1 if you have the `strerror' function. */
#define HAVE_STRERROR 1
/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1
/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1
/* Define to 1 if you have the `strncasecmp' function. */
#define HAVE_STRNCASECMP 1
/* Define to 1 if you have the `strsep' function. */
#define HAVE_STRSEP 1
/* Define to 1 if you have the `strtol' function. */
#define HAVE_STRTOL 1
/* Define if <math.h> defines struct exception. */
/* #undef HAVE_STRUCT_EXCEPTION */
/* Define to 1 if you have the <sys/dir.h> header file. */
#define HAVE_SYS_DIR_H 1
/* Define if you have sys_errlist in <errno.h>, <stdio.h>, or <stdlib.h>. */
#define HAVE_SYS_ERRLIST 1
/* Define if you have sys_nerr in <errno.h>, <stdio.h>, or <stdio.h>. */
#define HAVE_SYS_NERR 1
/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1
/* Define to 1 if you have the <sys/time.h> header file. */
#define HAVE_SYS_TIME_H 1
/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1
/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1
/* Define to 1 if you have the `vsnprintf' function. */
#define HAVE_VSNPRINTF 1
/* Define if the host's encoding is EBCDIC. */
/* #undef IS_EBCDIC_HOST */
/* Define if localtime() takes a long * not a time_t *. */
/* #undef LONG_FOR_TIME_T */
/* Define if your C++ doesn't declare gettimeofday(). */
/* #undef NEED_DECLARATION_GETTIMEOFDAY */
/* Define if your C++ doesn't declare hypot(). */
/* #undef NEED_DECLARATION_HYPOT */
/* Define if your C++ doesn't declare pclose(). */
/* #undef NEED_DECLARATION_PCLOSE */
/* Define if your C++ doesn't declare popen(). */
/* #undef NEED_DECLARATION_POPEN */
/* Define if your C++ doesn't declare putenv(). */
/* #undef NEED_DECLARATION_PUTENV */
/* Define if your C++ doesn't declare rand(). */
/* #undef NEED_DECLARATION_RAND */
/* Define if your C++ doesn't declare snprintf(). */
/* #undef NEED_DECLARATION_SNPRINTF */
/* Define if your C++ doesn't declare srand(). */
/* #undef NEED_DECLARATION_SRAND */
/* Define if your C++ doesn't declare strcasecmp(). */
/* #undef NEED_DECLARATION_STRCASECMP */
/* Define if your C++ doesn't declare strncasecmp(). */
/* #undef NEED_DECLARATION_STRNCASECMP */
/* Define if your C++ doesn't declare vfprintf(). */
/* #undef NEED_DECLARATION_VFPRINTF */
/* Define if your C++ doesn't declare vsnprintf(). */
/* #undef NEED_DECLARATION_VSNPRINTF */
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT ""
/* Define to the full name of this package. */
#define PACKAGE_NAME ""
/* Define to the full name and version of this package. */
#define PACKAGE_STRING ""
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME ""
/* Define to the version of this package. */
#define PACKAGE_VERSION ""
/* Define if the printer's page size is A4. */
/* #undef PAGEA4 */
/* Define as the return type of signal handlers (`int' or `void'). */
#define RETSIGTYPE void
/* Define if srand() returns void not int. */
#define RET_TYPE_SRAND_IS_VOID 1
/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1
/* Define if your C++ compiler uses a traditional (Reiser) preprocessor. */
/* #undef TRADITIONAL_CPP */
/* Define if the 0200 bit of the status returned by wait() indicates whether a
core image was produced for a process that was terminated by a signal. */
/* #undef WCOREFLAG */
/* Define to 1 if the X Window System is missing or not being used. */
/* #undef X_DISPLAY_MISSING */
/* Define if -D_POSIX_SOURCE is necessary. */
/* #undef _POSIX_SOURCE */
/* Define if you have ISC 3.x or 4.x. */
/* #undef _SYSV3 */
/* Define uintmax_t to `unsigned long' or `unsigned long long' if <inttypes.h>
does not exist. */
/* #undef uintmax_t */
-12
View File
@@ -1,12 +0,0 @@
/* $FreeBSD$ */
#define PROG_PREFIX ""
#define DEVICE "ps"
#define BINPATH "/usr/bin"
#define FONTPATH "/usr/share/groff_font"
#define MACROPATH "/usr/share/tmac"
#define INDEX_SUFFIX ".i"
#define COMMON_WORDS_FILE "/usr/share/dict/eign"
#define DEFAULT_INDEX_DIR "/usr/share/dict/papers"
#define DEFAULT_INDEX_NAME "Ind"
#define DEFAULT_INDEX "/usr/share/dict/papers/Ind"
-7
View File
@@ -1,7 +0,0 @@
# $FreeBSD$
SUBDIR= libgroff libdriver libbib
SUBDIR_PARALLEL=
.include <bsd.subdir.mk>
-6
View File
@@ -1,6 +0,0 @@
# $FreeBSD$
TOPREL= ../../..
DIST_SUBDIR= src/libs/${.CURDIR:T}
.include "../../Makefile.inc"
@@ -1,7 +0,0 @@
# $FreeBSD$
LIB= bib
INTERNALLIB=
SRCS= common.cpp index.cpp linear.cpp search.cpp map.c
.include <bsd.lib.mk>
@@ -1,14 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
include \
include/xlocale \
lib/libc++ \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,7 +0,0 @@
# $FreeBSD$
LIB= driver
INTERNALLIB=
SRCS= input.cpp printer.cpp
.include <bsd.lib.mk>
@@ -1,15 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
include \
include/xlocale \
lib/libc++ \
lib/msun \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,22 +0,0 @@
# $FreeBSD$
LIB= groff
INTERNALLIB=
SRCS= assert.cpp change_lf.cpp cmap.cpp color.cpp cset.cpp\
device.cpp errarg.cpp error.cpp fatal.cpp filename.cpp\
font.cpp fontfile.cpp geometry.cpp glyphuni.cpp htmlhint.cpp\
hypot.cpp invalid.cpp lf.cpp lineno.cpp macropath.cpp\
maxfilename.cpp mksdir.cpp nametoindex.cpp new.cpp paper.cpp prime.cpp\
ptable.cpp searchpath.cpp string.cpp strsave.cpp symbol.cpp\
tmpfile.cpp tmpname.cpp unicode.cpp uniglyph.cpp uniuni.cpp version.cpp
SRCS+= iftoa.c itoa.c matherr.c progname.c
CLEANFILES= version.cpp
.include <bsd.lib.mk>
version.cpp: ${GROFF_DIST}/VERSION ${GROFF_DIST}/REVISION
@${ECHO} Making version.cpp
@echo const char \*version_string = \"`cat ${GROFF_DIST}/VERSION`\"\; >$@
@echo const char \*revision_string = \"`cat ${GROFF_DIST}/REVISION`\"\; >>$@
@echo extern \"C\" const char \*Version_string = \"`cat ${GROFF_DIST}/VERSION`.`cat ${GROFF_DIST}/REVISION`\"\; | \
sed -e 's/\.0\"/\"/' >>$@
@@ -1,15 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
include \
include/xlocale \
lib/libc++ \
lib/msun \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-7
View File
@@ -1,7 +0,0 @@
# $FreeBSD$
SUBDIR= eqn grn html pic refer tbl
SUBDIR_PARALLEL=
.include <bsd.subdir.mk>
@@ -1,6 +0,0 @@
# $FreeBSD$
TOPREL= ../../..
DIST_SUBDIR= src/preproc/${.CURDIR:T}
.include "../../Makefile.inc"
@@ -1,16 +0,0 @@
# $FreeBSD$
PROG_CXX= eqn
SRCS= eqn.cpp eqn_tab.h main.cpp lex.cpp \
box.cpp limit.cpp list.cpp over.cpp text.cpp \
script.cpp mark.cpp other.cpp delim.cpp sqrt.cpp pile.cpp special.cpp
CFLAGS+= -I${DIST_DIR} -I.
DPADD= ${LIBGROFF}
LDADD= ${LIBGROFF}
SCRIPTS= neqn
MAN= eqn.1 neqn.1
CLEANFILES= eqn.cpp eqn_tab.h ${SCRIPTS} ${MAN} y.tab.c y.tab.h
eqn_tab.h: eqn.cpp
.include <bsd.prog.mk>
@@ -1,23 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
gnu/lib/csu \
gnu/lib/libgcc \
gnu/usr.bin/groff/src/libs/libgroff \
include \
include/xlocale \
lib/${CSU_DIR} \
lib/libc \
lib/libc++ \
lib/libcompiler_rt \
lib/libcxxrt \
lib/msun \
usr.bin/yacc.host \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,10 +0,0 @@
# $FreeBSD$
PROG_CXX= grn
SRCS= hdb.cpp hpoint.cpp hgraph.cpp main.cpp
DPADD= ${LIBGROFF}
LDADD= ${LIBGROFF}
LIBADD= m
CLEANFILES= ${MAN}
.include <bsd.prog.mk>
@@ -1,22 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
gnu/lib/csu \
gnu/lib/libgcc \
gnu/usr.bin/groff/src/libs/libgroff \
include \
include/xlocale \
lib/${CSU_DIR} \
lib/libc \
lib/libc++ \
lib/libcompiler_rt \
lib/libcxxrt \
lib/msun \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,9 +0,0 @@
# $FreeBSD$
PROG_CXX= pre-grohtml
SRCS= pre-html.cpp pushback.cpp
DPADD= ${LIBGROFF}
LDADD= ${LIBGROFF}
MAN=
.include <bsd.prog.mk>
@@ -1,22 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
gnu/lib/csu \
gnu/lib/libgcc \
gnu/usr.bin/groff/src/libs/libgroff \
include \
include/xlocale \
lib/${CSU_DIR} \
lib/libc \
lib/libc++ \
lib/libcompiler_rt \
lib/libcxxrt \
lib/msun \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,14 +0,0 @@
# $FreeBSD$
PROG_CXX= pic
SRCS= lex.cpp main.cpp object.cpp pic.cpp pic_tab.h \
common.cpp troff.cpp tex.cpp
CFLAGS+= -I${DIST_DIR} -I.
DPADD= ${LIBGROFF}
LDADD= ${LIBGROFF}
LIBADD= m
CLEANFILES= ${MAN} pic.cpp pic_tab.h y.tab.c y.tab.h
pic_tab.h: pic.cpp
.include <bsd.prog.mk>
@@ -1,23 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
gnu/lib/csu \
gnu/lib/libgcc \
gnu/usr.bin/groff/src/libs/libgroff \
include \
include/xlocale \
lib/${CSU_DIR} \
lib/libc \
lib/libc++ \
lib/libcompiler_rt \
lib/libcxxrt \
lib/msun \
usr.bin/yacc.host \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,11 +0,0 @@
# $FreeBSD$
PROG_CXX= refer
SRCS= command.cpp label.cpp ref.cpp refer.cpp token.cpp
CFLAGS+= -I${DIST_DIR}
DPADD= ${LIBBIB} ${LIBGROFF}
LDADD= ${LIBBIB} ${LIBGROFF}
LIBADD= m
CLEANFILES= label.cpp label_tab.h ${MAN} y.tab.c y.tab.h
.include <bsd.prog.mk>
@@ -1,24 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
gnu/lib/csu \
gnu/lib/libgcc \
gnu/usr.bin/groff/src/libs/libbib \
gnu/usr.bin/groff/src/libs/libgroff \
include \
include/xlocale \
lib/${CSU_DIR} \
lib/libc \
lib/libc++ \
lib/libcompiler_rt \
lib/libcxxrt \
lib/msun \
usr.bin/yacc.host \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,10 +0,0 @@
# $FreeBSD$
PROG_CXX= tbl
SRCS= main.cpp table.cpp
DPADD= ${LIBGROFF}
LDADD= ${LIBGROFF}
LIBADD= m
CLEANFILES= ${MAN}
.include <bsd.prog.mk>
@@ -1,22 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
gnu/lib/csu \
gnu/lib/libgcc \
gnu/usr.bin/groff/src/libs/libgroff \
include \
include/xlocale \
lib/${CSU_DIR} \
lib/libc \
lib/libc++ \
lib/libcompiler_rt \
lib/libcxxrt \
lib/msun \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-7
View File
@@ -1,7 +0,0 @@
# $FreeBSD$
SUBDIR= groff grog nroff psroff troff
SUBDIR_PARALLEL=
.include <bsd.subdir.mk>
-6
View File
@@ -1,6 +0,0 @@
# $FreeBSD$
TOPREL= ../../..
DIST_SUBDIR= src/roff/${.CURDIR:T}
.include "../../Makefile.inc"
-10
View File
@@ -1,10 +0,0 @@
# $FreeBSD$
PROG_CXX= groff
SRCS= groff.cpp pipeline.c
DPADD= ${LIBGROFF}
LDADD= ${LIBGROFF}
LIBADD= m
CLEANFILES= ${MAN}
.include <bsd.prog.mk>
@@ -1,22 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
gnu/lib/csu \
gnu/lib/libgcc \
gnu/usr.bin/groff/src/libs/libgroff \
include \
include/xlocale \
lib/${CSU_DIR} \
lib/libc \
lib/libc++ \
lib/libcompiler_rt \
lib/libcxxrt \
lib/msun \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-7
View File
@@ -1,7 +0,0 @@
# $FreeBSD$
SCRIPTS= grog
MAN= grog.1
CLEANFILES= ${SCRIPTS} ${MAN}
.include <bsd.prog.mk>
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,7 +0,0 @@
# $FreeBSD$
SCRIPTS= nroff
MAN= nroff.1
CLEANFILES= ${SCRIPTS} ${MAN}
.include <bsd.prog.mk>
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,6 +0,0 @@
# $FreeBSD$
SCRIPTS= psroff.sh
MAN= psroff.1
.include <bsd.prog.mk>
@@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
@@ -1,46 +0,0 @@
.\" Copyright (c) 1997 Wolfram Schneider <wosch@FreeBSD.org>.
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" $FreeBSD$
.Dd September 15, 1997
.Dt PSROFF 1
.Os
.Sh NAME
.Nm psroff
.Nd "send troff to PostScript printer"
.Sh SYNOPSIS
.Nm
.Op Ar "groff options"
.Op Ar
.Sh DESCRIPTION
The
.Nm
program is actually just a shell script which invokes the
.Xr groff 1
command to print the troff files to a PostScript printer.
.Sh SEE ALSO
.Xr groff 1 ,
.Xr lpr 1 ,
.Xr vgrind 1 ,
.Xr environ 7
@@ -1,5 +0,0 @@
#! /bin/sh -
#
# $FreeBSD$
exec groff -Tps -l -C ${1+"$@"}
-20
View File
@@ -1,20 +0,0 @@
# $FreeBSD$
PROG_CXX= troff
SRCS= dictionary.cpp div.cpp env.cpp input.cpp \
majorminor.cpp mtsm.cpp node.cpp number.cpp reg.cpp
DPADD= ${LIBGROFF}
LDADD= ${LIBGROFF}
LIBADD= m
CLEANFILES= majorminor.cpp ${MAN}
.include <bsd.prog.mk>
majorminor.cpp: ${GROFF_DIST}/VERSION ${GROFF_DIST}/REVISION
@${ECHO} Making $@
@-rm -f $@
@echo const char \*major_version = \
\"`sed -e 's/^\([^.]*\)\..*$$/\1/' ${GROFF_DIST}/VERSION`\"\; >$@
@echo const char \*minor_version = \
\"`sed -e 's/^[^.]*\.\([0-9]*\).*$$/\1/' ${GROFF_DIST}/VERSION`\"\; >>$@
@echo const char \*revision = \"`cat ${GROFF_DIST}/REVISION`\"\; >>$@
@@ -1,22 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
gnu/lib/csu \
gnu/lib/libgcc \
gnu/usr.bin/groff/src/libs/libgroff \
include \
include/xlocale \
lib/${CSU_DIR} \
lib/libc \
lib/libc++ \
lib/libcompiler_rt \
lib/libcxxrt \
lib/msun \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif
-7
View File
@@ -1,7 +0,0 @@
# $FreeBSD$
SUBDIR= addftinfo afmtodit hpftodit indxbib lkbib lookbib pfbtops tfmtodit
SUBDIR_PARALLEL=
.include <bsd.subdir.mk>
-6
View File
@@ -1,6 +0,0 @@
# $FreeBSD$
TOPREL= ../../..
DIST_SUBDIR= src/utils/${.CURDIR:T}
.include "../../Makefile.inc"

Some files were not shown because too many files have changed in this diff Show More