41 lines
867 B
Makefile
41 lines
867 B
Makefile
\# ex:ts=8
|
|
# New ports collection makefile for: pen
|
|
# Date created: Nov 13, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pen
|
|
PORTVERSION= 0.15.0
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://siag.nu/pub/pen/ \
|
|
http://siag.nu/pub/pen/
|
|
|
|
MAINTAINER= clement@FreeBSD.org
|
|
COMMENT= A load balancer for simple tcp based protocols
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_OPENSSL= yes
|
|
CONFIGURE_ARGS= --with-daemon --with-docdir=${DOCSDIR} \
|
|
--with-ssl=${OPENSSLBASE}
|
|
|
|
PORTDOCS= penstats HOWTO AUTHORS README ChangeLog COPYING
|
|
PLIST_FILES= bin/mergelogs bin/pen bin/penctl bin/penlog \
|
|
bin/penlogd
|
|
|
|
.if defined(WITH_FDSETSIZE)
|
|
CONFIGURE_ARGS+= --with-fd_setsize=${WITH_FDSETSIZE}
|
|
.endif
|
|
|
|
.if defined(WITH_POLL)
|
|
CONFIGURE_ARGS+= --with-poll
|
|
.endif
|
|
|
|
.if defined(NOPORTDOCS)
|
|
MAKE_ARGS+= -DNOPORTDOCS
|
|
.endif
|
|
|
|
MAN1= mergelogs.1 pen.1 penctl.1 penlog.1 penlogd.1
|
|
|
|
.include <bsd.port.mk>
|