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/files | |
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/files')
-rw-r--r-- | comms/qpage/files/patch-aa | 35 |
1 files changed, 35 insertions, 0 deletions
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) |