diff options
author | Roger Hardiman <roger@FreeBSD.org> | 1999-06-08 17:48:39 +0000 |
---|---|---|
committer | Roger Hardiman <roger@FreeBSD.org> | 1999-06-08 17:48:39 +0000 |
commit | 3555fcba5197db1749b414c1b416bff4913447bb (patch) | |
tree | 5a4f1df7f971019ecd08dc7f78b2b3cb188f4712 /misc/videotext/files | |
parent | - Updated to JDK1.1.8. (diff) |
Initial import of videotext, a program to display Videotext/Teletext
pages either direct from hardware or from .vtx files which can be
produced from the vbidecode program.
Diffstat (limited to 'misc/videotext/files')
-rw-r--r-- | misc/videotext/files/patch-aa | 19 | ||||
-rw-r--r-- | misc/videotext/files/patch-ab | 19 | ||||
-rw-r--r-- | misc/videotext/files/patch-ac | 25 | ||||
-rw-r--r-- | misc/videotext/files/patch-ad | 19 | ||||
-rw-r--r-- | misc/videotext/files/patch-ae | 19 | ||||
-rw-r--r-- | misc/videotext/files/patch-af | 19 | ||||
-rw-r--r-- | misc/videotext/files/patch-ba | 46 |
7 files changed, 166 insertions, 0 deletions
diff --git a/misc/videotext/files/patch-aa b/misc/videotext/files/patch-aa new file mode 100644 index 000000000000..f0533324e0fb --- /dev/null +++ b/misc/videotext/files/patch-aa @@ -0,0 +1,19 @@ +*** scripts/check-help.orig Tue Jun 8 16:10:07 1999 +--- scripts/check-help Tue Jun 8 16:10:07 1999 +*************** INFOFILE="$1" +*** 24,30 **** + shift + + egrep -h 'XV_HELP_DATA.*"videotext:[a-zA-Z0-9_]+"' "$@" | +! gawk ' + BEGIN { + RS = "[ \t,]" + } +--- 24,30 ---- + shift + + egrep -h 'XV_HELP_DATA.*"videotext:[a-zA-Z0-9_]+"' "$@" | +! awk ' + BEGIN { + RS = "[ \t,]" + } diff --git a/misc/videotext/files/patch-ab b/misc/videotext/files/patch-ab new file mode 100644 index 000000000000..3ce89ca54a29 --- /dev/null +++ b/misc/videotext/files/patch-ab @@ -0,0 +1,19 @@ +*** scripts/install-magic.orig Tue Jun 8 16:10:07 1999 +--- scripts/install-magic Tue Jun 8 16:10:07 1999 +*************** fi +*** 21,27 **** + trap 'rm -f "$1.vtxnew"' 0 + + cp -p "$1" "$1.vtxnew" +! gawk ' + /^#.*Id: Localstuff/ { + localfound++ + } +--- 21,27 ---- + trap 'rm -f "$1.vtxnew"' 0 + + cp -p "$1" "$1.vtxnew" +! awk ' + /^#.*Id: Localstuff/ { + localfound++ + } diff --git a/misc/videotext/files/patch-ac b/misc/videotext/files/patch-ac new file mode 100644 index 000000000000..bc31792704a6 --- /dev/null +++ b/misc/videotext/files/patch-ac @@ -0,0 +1,25 @@ +*** scripts/mkpsprolog.orig Tue Jun 8 16:10:07 1999 +--- scripts/mkpsprolog Tue Jun 8 16:10:07 1999 +*************** +*** 8,17 **** + # Read COPYING for more information + + # Maybe sed would be more suitable for such a simple task, but you already +! # need gawk for mktitlepage & mkvtxfont, so why not use it here... + + +! exec gawk ' + BEGIN { + print "/* This file was created automatically by mkpsprolog. DO NOT EDIT */" + print "" +--- 8,17 ---- + # Read COPYING for more information + + # Maybe sed would be more suitable for such a simple task, but you already +! # need awk for mktitlepage & mkvtxfont, so why not use it here... + + +! exec awk ' + BEGIN { + print "/* This file was created automatically by mkpsprolog. DO NOT EDIT */" + print "" diff --git a/misc/videotext/files/patch-ad b/misc/videotext/files/patch-ad new file mode 100644 index 000000000000..bcad311d4a66 --- /dev/null +++ b/misc/videotext/files/patch-ad @@ -0,0 +1,19 @@ +*** scripts/mktitlepage.orig Tue Jun 8 16:10:07 1999 +--- scripts/mktitlepage Tue Jun 8 16:10:07 1999 +*************** +*** 14,20 **** + # by 2 hex-digits, so currently we can only set the lower 16 bits of the attributes. + + +! exec gawk ' + BEGIN { + print "/* This file was created automatically by mktitlepage. DO NOT EDIT */" + } +--- 14,20 ---- + # by 2 hex-digits, so currently we can only set the lower 16 bits of the attributes. + + +! exec awk ' + BEGIN { + print "/* This file was created automatically by mktitlepage. DO NOT EDIT */" + } diff --git a/misc/videotext/files/patch-ae b/misc/videotext/files/patch-ae new file mode 100644 index 000000000000..b2acef23a7c6 --- /dev/null +++ b/misc/videotext/files/patch-ae @@ -0,0 +1,19 @@ +*** scripts/mkvtxfont.orig Tue Jun 8 16:10:07 1999 +--- scripts/mkvtxfont Tue Jun 8 16:10:07 1999 +*************** if [ $# -ne 4 ]; then +*** 18,24 **** + exit 1 + fi + +! exec gawk -v "nfile=$2" -v "dfile=$3" -v "vfile=$4" -f - << "THIS_IS_THE_END" "$1" + + function print_header(xsize, ysize, ptsize, width, file) { # Print BDF-File header + print "STARTFONT 2.1" > file +--- 18,24 ---- + exit 1 + fi + +! exec awk -v "nfile=$2" -v "dfile=$3" -v "vfile=$4" -f - << "THIS_IS_THE_END" "$1" + + function print_header(xsize, ysize, ptsize, width, file) { # Print BDF-File header + print "STARTFONT 2.1" > file diff --git a/misc/videotext/files/patch-af b/misc/videotext/files/patch-af new file mode 100644 index 000000000000..edb726c1e467 --- /dev/null +++ b/misc/videotext/files/patch-af @@ -0,0 +1,19 @@ +*** scripts/uninstall-magic.orig Tue Jun 8 16:10:07 1999 +--- scripts/uninstall-magic Tue Jun 8 16:10:07 1999 +*************** fi +*** 21,27 **** + trap 'rm -f "$1.vtxnew"' 0 + + cp -p "$1" "$1.vtxnew" +! gawk ' + /^#.*VideoteXt/ { + skip = 1 + next +--- 21,27 ---- + trap 'rm -f "$1.vtxnew"' 0 + + cp -p "$1" "$1.vtxnew" +! awk ' + /^#.*VideoteXt/ { + skip = 1 + next diff --git a/misc/videotext/files/patch-ba b/misc/videotext/files/patch-ba new file mode 100644 index 000000000000..52e5d9068bba --- /dev/null +++ b/misc/videotext/files/patch-ba @@ -0,0 +1,46 @@ +*** Makefile.orig Tue Jun 8 16:17:05 1999 +--- Makefile Tue Jun 8 17:05:25 1999 +*************** LIBDIR = /usr/local/lib/vtx +*** 26,33 **** + SPOOLDIR = /var/spool/vtx + + BINDIR = /usr/local/bin +! XBINDIR = /usr/local/bin/X11 +! FONTDIR = /usr/lib/X11/fonts/local + MANDIR = /usr/local/man + XMANDIR = /usr/local/man + +--- 26,35 ---- + SPOOLDIR = /var/spool/vtx + + BINDIR = /usr/local/bin +! #XBINDIR = /usr/local/bin/X11 +! XBINDIR = /usr/local/bin +! #FONTDIR = /usr/lib/X11/fonts/local +! FONTDIR = /usr/X11R6/lib/X11/fonts/misc + MANDIR = /usr/local/man + XMANDIR = /usr/local/man + +*************** GIF_SUPPORT = -DGIF_SUPPORT +*** 79,88 **** + # Uncomment the next lines if you want PNG support and have libpng and libz + # installed. + +! #PNG_SUPPORT = -DPNG_SUPPORT +! #PNG_LIBS = -lpng -lz -lm +! #PNG_INCLUDEDIRS = -I/usr/local/include +! #PNG_LIBDIRS = -L/usr/local/lib + + + # Uncomment the following line if you want to get coredumps when an +--- 81,90 ---- + # Uncomment the next lines if you want PNG support and have libpng and libz + # installed. + +! PNG_SUPPORT = -DPNG_SUPPORT +! PNG_LIBS = -lpng -lz -lm +! PNG_INCLUDEDIRS = -I/usr/local/include +! PNG_LIBDIRS = -L/usr/local/lib + + + # Uncomment the following line if you want to get coredumps when an |