diff options
author | torstenb <torstenb@FreeBSD.org> | 1995-02-16 07:51:24 +0800 |
---|---|---|
committer | torstenb <torstenb@FreeBSD.org> | 1995-02-16 07:51:24 +0800 |
commit | 5eea2bf49b1c846a9cf0bc86f22ea1e442b45b88 (patch) | |
tree | 431a17f905630909e2070ee65b69c602e2a09b4b /sysutils | |
parent | f6be0c379a71bcc23c3a4e36caa3e3b4bf6574bb (diff) | |
download | freebsd-ports-gnome-5eea2bf49b1c846a9cf0bc86f22ea1e442b45b88.tar.gz freebsd-ports-gnome-5eea2bf49b1c846a9cf0bc86f22ea1e442b45b88.tar.zst freebsd-ports-gnome-5eea2bf49b1c846a9cf0bc86f22ea1e442b45b88.zip |
tua - the uucp analyzer, version 4.0
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/tua/Makefile | 19 | ||||
-rw-r--r-- | sysutils/tua/distinfo | 1 | ||||
-rw-r--r-- | sysutils/tua/files/patch-aa | 53 | ||||
-rw-r--r-- | sysutils/tua/files/patch-ab | 36 | ||||
-rw-r--r-- | sysutils/tua/pkg-comment | 1 | ||||
-rw-r--r-- | sysutils/tua/pkg-descr | 20 | ||||
-rw-r--r-- | sysutils/tua/pkg-plist | 5 |
7 files changed, 135 insertions, 0 deletions
diff --git a/sysutils/tua/Makefile b/sysutils/tua/Makefile new file mode 100644 index 000000000000..c8a12d1f48c9 --- /dev/null +++ b/sysutils/tua/Makefile @@ -0,0 +1,19 @@ +# New ports collection makefile for: tua +# Version required: 4.0 +# Date created: 11 Feb. 1995 +# Whom: torstenb +# +# $Id:$ +# + +DISTNAME= tua-4.0 +MASTER_SITES= ftp://itnsg1.cineca.it/local/tua/ +GNU_CONFIGURE= YES + +pre-install: + mkdir -p ${PREFIX}/bin + mkdir -p ${PREFIX}/man/man1 + mkdir -p ${PREFIX}/info + mkdir -p ${PREFIX}/lib + +.include <bsd.port.mk> diff --git a/sysutils/tua/distinfo b/sysutils/tua/distinfo new file mode 100644 index 000000000000..f830085f3175 --- /dev/null +++ b/sysutils/tua/distinfo @@ -0,0 +1 @@ +MD5 (tua-4.0.tar.gz) = 5617bdf3f45f48db2e4affb5255e4d8c diff --git a/sysutils/tua/files/patch-aa b/sysutils/tua/files/patch-aa new file mode 100644 index 000000000000..9a7a29116c9a --- /dev/null +++ b/sysutils/tua/files/patch-aa @@ -0,0 +1,53 @@ +*** customize.h.orig Sun Feb 12 16:15:21 1995 +--- customize.h Sun Feb 12 16:17:07 1995 +*************** +*** 68,74 **** + * with a command line option (--taylor-uucp || --hdb-uucp) + */ + #define TAYLOR_UUCP +! #define HDB_UUCP + + #if !defined (TAYLOR_UUCP) && !defined (HDB_UUCP) + #error At least one of these must be defined! +--- 68,74 ---- + * with a command line option (--taylor-uucp || --hdb-uucp) + */ + #define TAYLOR_UUCP +! #undef HDB_UUCP + + #if !defined (TAYLOR_UUCP) && !defined (HDB_UUCP) + #error At least one of these must be defined! +*************** +*** 87,93 **** + * + */ + #ifdef TAYLOR_UUCP +! #define DEFAULT_TAYLOR_SPOOL_DIR "/usr/local/spool/uucp" + #endif + + #ifdef HDB_UUCP +--- 87,93 ---- + * + */ + #ifdef TAYLOR_UUCP +! #define DEFAULT_TAYLOR_SPOOL_DIR "/var/spool/uucp" + #endif + + #ifdef HDB_UUCP +*************** +*** 140,146 **** + * If you didn't define USE_TCL (See Makefile), it will be completely + * ignored. + */ +! #define TUA_INIT_SCRIPT "/usr/local/gnulib/TUA_init.tcl" + + /* + * TCL INIT COMMAND: +--- 140,146 ---- + * If you didn't define USE_TCL (See Makefile), it will be completely + * ignored. + */ +! #define TUA_INIT_SCRIPT LIBDIR "/TUA_init.tcl" + + /* + * TCL INIT COMMAND: diff --git a/sysutils/tua/files/patch-ab b/sysutils/tua/files/patch-ab new file mode 100644 index 000000000000..b0ffb68d8388 --- /dev/null +++ b/sysutils/tua/files/patch-ab @@ -0,0 +1,36 @@ +*** Makefile.in.orig Wed Dec 22 15:58:38 1993 +--- Makefile.in Sun Feb 12 16:28:47 1995 +*************** +*** 40,46 **** + infodir=${prefix}/info + + # Set the options for the compiler and the linker +! C_FLAGS = -g @MORE_CFLAGS@ + LD_FLAGS = + + # GLOB ALIAS: +--- 40,46 ---- + infodir=${prefix}/info + + # Set the options for the compiler and the linker +! C_FLAGS = -O2 @MORE_CFLAGS@ + LD_FLAGS = + + # GLOB ALIAS: +*************** +*** 176,182 **** + release: dist + @REL=`perl -ne 'print $$1 if /RELEASE.*"(.*)"/;' patchlevel.h`; \ + echo $$REL > .last_dist_version +! + .PHONY: dist + dist: manifest ${SHARF} + @REL=`perl -ne 'print $$1 if /RELEASE.*"(.*)"/;' patchlevel.h`; \ +--- 176,182 ---- + release: dist + @REL=`perl -ne 'print $$1 if /RELEASE.*"(.*)"/;' patchlevel.h`; \ + echo $$REL > .last_dist_version +! + .PHONY: dist + dist: manifest ${SHARF} + @REL=`perl -ne 'print $$1 if /RELEASE.*"(.*)"/;' patchlevel.h`; \ diff --git a/sysutils/tua/pkg-comment b/sysutils/tua/pkg-comment new file mode 100644 index 000000000000..22a41b8445b8 --- /dev/null +++ b/sysutils/tua/pkg-comment @@ -0,0 +1 @@ +TUA - The Uucp Analyzer. Version 4.0 diff --git a/sysutils/tua/pkg-descr b/sysutils/tua/pkg-descr new file mode 100644 index 000000000000..d0e1757bd6a6 --- /dev/null +++ b/sysutils/tua/pkg-descr @@ -0,0 +1,20 @@ +This is TUA - "The Uucp Analyzer". + +Its purpose is to collect all the information that the Honey Dan Ber +or the Taylor versions of the UUCP package put in their various logs, +tipically located in a few subdirectories on /usr/spool/uucp. It then +builds up a clear report, showing data from several different points of +view. It may even become an interactive customizable application by +linking in the TCL support. + +It is fast, because all the data are maintained in binary trees; and +it has no arbitrary restriction on the size of the logs it can eat. +Very large sites can use the SoftChip Btree Library for faster searches. + +It can maintains an history of the connections with the various sites +your machine is connected to, and a last-year summary of the amount of +data you received and transmitted, month-by-month. + +You can get, in a chart form, the status of the usage of all your +serial port, so you can easily say when your modem is available for a +new link. diff --git a/sysutils/tua/pkg-plist b/sysutils/tua/pkg-plist new file mode 100644 index 000000000000..373c5524e8fa --- /dev/null +++ b/sysutils/tua/pkg-plist @@ -0,0 +1,5 @@ +@cwd /usr/local +bin/tua +man/man1/tua.1 +info/tua.info +lib/tua.pcd |