- tabled can now listen on a local fifo and on a network socket - a command line client, tablec, has been added to speak to a tabled daemon over the net - network exchange can be protected by a secret hash
32 lines
657 B
Makefile
32 lines
657 B
Makefile
# $OpenBSD: Makefile,v 1.8 2007/04/14 06:32:19 mbalmer Exp $
|
|
|
|
COMMENT= "daemon to modify pf tables from userland"
|
|
|
|
DISTNAME= tabled-1.0.5
|
|
|
|
CATEGORIES= sysutils
|
|
|
|
HOMEPAGE= http://www.etc.msys.ch/software/tabled/
|
|
|
|
MAINTAINER= Marc Balmer <mbalmer@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c
|
|
|
|
MASTER_SITES= ftp://ftp.etc.msys.ch/pub/sources/tabled/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
FAKE_FLAGS= ${MAKE_FLAGS}
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples
|
|
${INSTALL_DATA} ${WRKSRC}/tabled.conf ${PREFIX}/share/examples/
|
|
|
|
.include <bsd.port.mk>
|