diff options
author | roger <roger@FreeBSD.org> | 1999-08-18 15:08:37 +0000 |
---|---|---|
committer | roger <roger@FreeBSD.org> | 1999-08-18 15:08:37 +0000 |
commit | 9c989a454572505a5e30a78f87ccddbc28b346f2 (patch) | |
tree | 9e3062409e8662b373c96012e729a82c18e761b3 /misc/alevt/files | |
parent | 6ad97b31c8cad239a99a43b2025fdf89f605dcfe (diff) | |
download | FreeBSD-ports-9c989a454572505a5e30a78f87ccddbc28b346f2.zip FreeBSD-ports-9c989a454572505a5e30a78f87ccddbc28b346f2.tar.gz |
Import of AleVT
AleVT is a X11 Teletext decoder and viewer. It reads foom /dev/vbi
It supports multiple windows, page cache and some command line utils.
Diffstat (limited to 'misc/alevt/files')
-rw-r--r-- | misc/alevt/files/patch-aa | 9 | ||||
-rw-r--r-- | misc/alevt/files/patch-ab | 15 |
2 files changed, 24 insertions, 0 deletions
diff --git a/misc/alevt/files/patch-aa b/misc/alevt/files/patch-aa new file mode 100644 index 0000000..a940382 --- /dev/null +++ b/misc/alevt/files/patch-aa @@ -0,0 +1,9 @@ +*** search.c.orig Wed Aug 18 13:29:10 1999 +--- search.c Wed Aug 18 13:29:31 1999 +*************** +*** 1,3 **** +--- 1,4 ---- ++ #include <sys/types.h> + #include <stdlib.h> + #include "vt.h" + #include "misc.h" diff --git a/misc/alevt/files/patch-ab b/misc/alevt/files/patch-ab new file mode 100644 index 0000000..eb7d948 --- /dev/null +++ b/misc/alevt/files/patch-ab @@ -0,0 +1,15 @@ +*** alevt-date.c.orig Wed Aug 18 13:33:52 1999 +--- alevt-date.c Wed Aug 18 13:33:31 1999 +*************** chk_time(int t) +*** 32,39 **** +--- 32,41 ---- + + t = t/100/100 * 60*60 + t/100%100 * 60 + t%100; + t += timezone; ++ /* + if (daylight) + t -= 60*60; ++ */ + + sys_t = time(0); + dt = t - sys_t % (24*60*60); |