diff options
author | max <max@FreeBSD.org> | 1997-10-13 04:39:10 +0000 |
---|---|---|
committer | max <max@FreeBSD.org> | 1997-10-13 04:39:10 +0000 |
commit | edd4e131e2ce59d3796b107bd7dab65b08aae47d (patch) | |
tree | 468aaa631595eec9d2f717969f17492a8bf1affe /comms/qpage | |
parent | 02f1eeed7b6909426c15c1d062dc56a9aad165fb (diff) | |
download | FreeBSD-ports-edd4e131e2ce59d3796b107bd7dab65b08aae47d.zip FreeBSD-ports-edd4e131e2ce59d3796b107bd7dab65b08aae47d.tar.gz |
Re-import of qpage port which used to live in the misc category. Here's
the import message used when it was imported to ports/misc:
New port, qpage:
QuickPage sends messages to a paging terminal using the SNPP and IXO
(also known as TAP) protocols. It is normally used with no options
other than a recipient and the message text, in which case the message
is sent to the SNPP server where it is submitted to a page queue to be
sent by a separate daemon process.
PR: 4224
Submitted by: Joe Stein <joes@seaport.net>
Diffstat (limited to 'comms/qpage')
-rw-r--r-- | comms/qpage/Makefile | 18 | ||||
-rw-r--r-- | comms/qpage/distinfo | 1 | ||||
-rw-r--r-- | comms/qpage/files/patch-aa | 35 | ||||
-rw-r--r-- | comms/qpage/pkg-comment | 1 | ||||
-rw-r--r-- | comms/qpage/pkg-descr | 12 | ||||
-rw-r--r-- | comms/qpage/pkg-plist | 3 |
6 files changed, 70 insertions, 0 deletions
diff --git a/comms/qpage/Makefile b/comms/qpage/Makefile new file mode 100644 index 0000000..7453798 --- /dev/null +++ b/comms/qpage/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: qpage +# Version required: 3.2 +# Date created: 02 Aug 1997 +# Whom: joes@seaport.net +# +# $Id: Makefile,v 1.1.1.1 1997/10/02 02:56:37 max Exp $ +# + +DISTNAME= qpage-3.2 +CATEGORIES= comms +MASTER_SITES= ftp://ftp.it.mtu.edu/pub/QuickPage/ +EXTRACT_SUFX= .tar.Z + +MAINTAINER= joes@seaport.net + +MAN1= qpage.1 + +.include <bsd.port.mk> diff --git a/comms/qpage/distinfo b/comms/qpage/distinfo new file mode 100644 index 0000000..f51b6e8 --- /dev/null +++ b/comms/qpage/distinfo @@ -0,0 +1 @@ +MD5 (qpage-3.2.tar.Z) = 9716c9d07a504b301788a22eaaf2aa80 diff --git a/comms/qpage/files/patch-aa b/comms/qpage/files/patch-aa new file mode 100644 index 0000000..8a0b53e --- /dev/null +++ b/comms/qpage/files/patch-aa @@ -0,0 +1,35 @@ +--- Makefile.orig Sat Aug 2 21:02:24 1997 ++++ Makefile Sun Aug 3 21:38:37 1997 +@@ -16,14 +16,16 @@ + # NEED_STRERROR - your system does NOT support strerror() + # + +-CCENV= -DSOLARIS -DFACILITY=LOG_LOCAL1 # -DSNPP_SERVER=\"short\" ++#CCENV= -DSOLARIS -DFACILITY=LOG_LOCAL1 # -DSNPP_SERVER=\"short\" ++CCENV= -DFACILITY=LOG_DAEMON -DLOCKDIR=\"/var/spool/lock\" -DDAEMONUSER=1 -DDAEMONGROUP=68 -DSYSTEM_CONFIG=\"${PREFIX}/etc/qpage.cf\" -D_PATH_SENDMAIL=\"/usr/sbin/sendmail\" + #DEBUG= -g -DDEBUG + +-CFLAGS= -mr $(DEBUG) $(CCENV) +-LDLIBS= -lsocket -lnsl ++#CFLAGS= -mr $(DEBUG) $(CCENV) ++CFLAGS= -g $(DEBUG) $(CCENV) ++#LDLIBS= -lsocket -lnsl + + #CC=cc +-#CC=gcc ++CC=gcc + RM= /bin/rm -f + + +@@ -53,6 +55,11 @@ + all: $(PROG) + + $(OBJS): $(INCL) ++ ++install: all ++ ${BSD_INSTALL_PROGRAM} qpage ${PREFIX}/bin ++ ${BSD_INSTALL_MAN} qpage.man ${PREFIX}/man/man1/qpage.1 ++ ${BSD_INSTALL_DATA} example-qpage.cf ${PREFIX}/etc + + $(PROG): $(OBJS) + $(RM) $(PROG) diff --git a/comms/qpage/pkg-comment b/comms/qpage/pkg-comment new file mode 100644 index 0000000..ce51596 --- /dev/null +++ b/comms/qpage/pkg-comment @@ -0,0 +1 @@ +SNPP client/server for sending messages to an alphanumeric pager. diff --git a/comms/qpage/pkg-descr b/comms/qpage/pkg-descr new file mode 100644 index 0000000..2aa1069 --- /dev/null +++ b/comms/qpage/pkg-descr @@ -0,0 +1,12 @@ +QuickPage sends messages to a paging terminal using the SNPP and IXO +(also known as TAP) protocols. It is normally used with no options +other than a recipient and the message text, in which case the message +is sent to the SNPP server where it is submitted to a page queue to be +sent by a separate daemon process. + +Page groups and duty schedules are supported. Status notification +messages indicating the success or failure of a page are sent via +e-mail to submitters of high-priority (level 0) pages. + +Joe Stein +joes@seaport.net diff --git a/comms/qpage/pkg-plist b/comms/qpage/pkg-plist new file mode 100644 index 0000000..1c31cad --- /dev/null +++ b/comms/qpage/pkg-plist @@ -0,0 +1,3 @@ +bin/qpage +man/man1/qpage.1.gz +etc/example-qpage.cf |