mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
7dc406a7a1
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category N. CR: D307 Approved by: portmgr (bapt)
39 lines
920 B
Makefile
39 lines
920 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pen
|
|
PORTVERSION= 0.18.0
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://siag.nu/pub/pen/ \
|
|
http://siag.nu/pub/pen/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Load balancer for simple TCP based protocols
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_OPENSSL= yes
|
|
USE_RC_SUBR= pen
|
|
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 man/man1/mergelogs.1.gz \
|
|
man/man1/pen.1.gz man/man1/penctl.1.gz \
|
|
man/man1/penlog.1.gz man/man1/penlogd.1.gz
|
|
|
|
OPTIONS_DEFINE= DOCS KQUEUE
|
|
OPTIONS_DEFAULT=KQUEUE
|
|
KQUEUE_DESC= Use kqueue backend
|
|
|
|
.if defined(WITH_FDSETSIZE)
|
|
CONFIGURE_ARGS+= --with-fd_setsize=${WITH_FDSETSIZE}
|
|
.endif
|
|
|
|
KQUEUE_CONFIGURE_ON= --with-kqueue
|
|
KQUEUE_CONFIGURE_OFF= --with-poll
|
|
|
|
DOCS_MAKE_ARGS_OFF= -DNOPORTDOCS
|
|
|
|
.include <bsd.port.mk>
|