aboutsummaryrefslogtreecommitdiff
path: root/contrib/groff/gendef.sh
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2017-06-07 23:00:34 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2017-06-07 23:00:34 +0000
commit738919c0391b99947b758d85f6a8636be1886fbb (patch)
tree6dcdfc8513007dbfe8dd40dfb3d7dfffb49b6651 /contrib/groff/gendef.sh
parente0e0323354c55335775e3a55b1af0f93967fb412 (diff)
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)
Notes
Notes: svn path=/head/; revision=319664
Diffstat (limited to 'contrib/groff/gendef.sh')
-rw-r--r--contrib/groff/gendef.sh34
1 files changed, 0 insertions, 34 deletions
diff --git a/contrib/groff/gendef.sh b/contrib/groff/gendef.sh
deleted file mode 100644
index 4853eef4757c..000000000000
--- a/contrib/groff/gendef.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#
-# gendef filename var=val var=val ...
-#
-# This script is used to generate src/include/defs.h
-#
-
-file=$1
-shift
-
-defs="#define $1"
-shift
-for def
-do
- defs="$defs
-#define $def"
-done
-
-# Use $TMPDIR if defined. Default to cwd, for non-Unix systems
-# which don't have /tmp on each drive (we are going to remove
-# the file before we exit anyway). Put the PID in the basename,
-# since the extension can only hold 3 characters on MS-DOS.
-t=${TMPDIR-.}/gro$$.tmp
-
-sed -e 's/=/ /' >$t <<EOF
-$defs
-EOF
-
-test -r $file && cmp -s $t $file || cp $t $file
-
-rm -f $t
-
-exit 0
-
-# eof