- Update to 0.17.1

- Add rcNG script [1]

PR:             ports/94976 [1]
Submitted by:   Dominic Marks <dom@helenmarks.co.uk> [1]
This commit is contained in:
Clement Laforet 2006-09-24 14:34:36 +00:00
parent 290ddfc9eb
commit 3c00a1855c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=173713
3 changed files with 33 additions and 5 deletions

View File

@ -1,4 +1,3 @@
\# ex:ts=8
# New ports collection makefile for: pen
# Date created: Nov 13, 2001
# Whom: ijliao
@ -7,7 +6,7 @@
#
PORTNAME= pen
PORTVERSION= 0.17.0
PORTVERSION= 0.17.1
CATEGORIES= net
MASTER_SITES= ftp://siag.nu/pub/pen/ \
http://siag.nu/pub/pen/
@ -17,6 +16,7 @@ COMMENT= A load balancer for simple tcp based protocols
GNU_CONFIGURE= yes
USE_OPENSSL= yes
USE_RC_SUBR= pen.sh
CONFIGURE_ARGS= --with-daemon --with-docdir=${DOCSDIR} \
--with-ssl=${OPENSSLBASE} --with-kqueue

View File

@ -1,3 +1,3 @@
MD5 (pen-0.17.0.tar.gz) = d144ebf5aa8b25d6f685ec5ceff6f57a
SHA256 (pen-0.17.0.tar.gz) = c4d1e5efe324b94e4152fc7a72fd3a946d97de76f8d54d89a5b83dc44732ce24
SIZE (pen-0.17.0.tar.gz) = 116945
MD5 (pen-0.17.1.tar.gz) = 62548155d3bf42aea05b32227e132331
SHA256 (pen-0.17.1.tar.gz) = 13e070e4e03d9141530bbf9fa071d2ce3f04b0324349757c8842e073eef85556
SIZE (pen-0.17.1.tar.gz) = 117009

28
net/pen/files/pen.sh.in Normal file
View File

@ -0,0 +1,28 @@
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: pen
# REQUIRE: NETWORKING SERVERS
# BEFORE: DAEMON
# KEYWORD: shutdown
#
# Add the following line to /etc/rc.conf to enable pen:
#
# pen_enable="YES"
#
. %%RC_SUBR%%
name=pen
rcvar=`set_rcvar`
command=%%PREFIX%%/bin/pen
pen_enable=${pen_enable:-"NO"}
pen_flags=${pen_flags:-""}
load_rc_config $name
run_rc_command "$1"