4fc0cc30c3
010912 When storing part of the buffer for a renewed attempt, store the *end*, not the beginning. Affects copy_up and copy_down. Autoconf. Use daemon() if available. Make sure that we don't try to close uninitialized file handles in add_client. New option -n to not make sockets nonblocking (mainly useful for debugging). 010911 Make sure that remaining data is stored away when we get EAGAIN in copy_up. Released 0.3.3. 010909 Added -p argument to store process id in a file (Andreas Wrede). Made the sockets nonblocking. Handle EAGAIN in copy_up/down. Released 0.3.2. 010908 Ignore SIGPIPE. Released 0.3.1. 010827 Option -h uses a hash on the client IP address for the initial server selection. Option -s ("stubborn") prevents failover to another server if the initial choice is unavailable. 010824 Use getport for the local port as well.
25 lines
648 B
Makefile
25 lines
648 B
Makefile
# $NetBSD: Makefile,v 1.2 2001/09/13 15:09:38 rh Exp $
|
|
#
|
|
|
|
DISTNAME= pen-0.4.0
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://siag.nu/pub/pen/ \
|
|
ftp://siag.nu/pub/pen/
|
|
|
|
MAINTAINER= rh@netbsd.org
|
|
HOMEPAGE= http://siag.nu/pen/
|
|
COMMENT= load balancer for "simple" tcp based protocols
|
|
|
|
GNU_CONFIGURE= YES
|
|
|
|
post-install:
|
|
#.for prg in pen mergelogs
|
|
# ${INSTALL_PROGRAM} ${WRKSRC}/${prg} ${PREFIX}/sbin
|
|
# ${INSTALL_MAN} ${WRKSRC}/${prg}.1 ${PREFIX}/man/man8/${prg}.8
|
|
#.endfor
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/pen
|
|
.for doc in COPYING ChangeLog README
|
|
${INSTALL_DATA} ${WRKSRC}/${doc} ${PREFIX}/share/doc/pen
|
|
.endfor
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|