f70503a66c
DESCR: ipfreely is a simple and secure TCP proxy daemon. It refuses to run as a privileged user, uses safe string handling functions, confines itself to a chroot() jail, performs no dynamic memory allocation, makes safe use of signal handlers and has some simple logging and debugging features. ok alek@
30 lines
639 B
Makefile
30 lines
639 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/06/27 18:48:46 niallo Exp $
|
|
|
|
COMMENT= "simple, secure TCP proxy daemon"
|
|
|
|
DISTNAME= ipfreely-20050327
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://ipfreely.sourceforge.net/
|
|
|
|
MAINTAINER= Niall O Higgins <niallo@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ipfreely/}
|
|
|
|
WRKDIST= ${WRKDIR}/ipfreely
|
|
WANTLIB= c
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ipfreely ${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/ipfreely.cat8 ${PREFIX}/man/man8/ipfreely.0
|
|
|
|
.include <bsd.port.mk>
|