Add port security/execwrap:

ExecWrap is a super-user exec wrapper for the lighttpd web-server, but
it can be used in any environment as long as arguments can be passed
from the server to its children via the environment.

WWW: http://cyanite.org/execwrap/
Author: Sune Foldager <cryo@cyanite.org>
This commit is contained in:
Andrew Pantyukhin 2007-06-22 15:53:20 +00:00
parent afc7d44315
commit 32f7edd735
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=194086
4 changed files with 60 additions and 0 deletions

View file

@ -115,6 +115,7 @@
SUBDIR += drweb-sendmail
SUBDIR += dsniff
SUBDIR += engine_pkcs11
SUBDIR += execwrap
SUBDIR += expiretable
SUBDIR += f-prot
SUBDIR += f-prot-sig

View file

@ -0,0 +1,50 @@
# New ports collection makefile for: execwrap
# Date created: 22 June 2007
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= execwrap
PORTVERSION= 0.4
CATEGORIES= security
MASTER_SITES= http://cyanite.org/execwrap/ CENKES
DISTNAME= ExecWrap-${DISTVERSION}
EXTRACT_SUFX= .tgz
MAINTAINER= infofarmer@FreeBSD.org
COMMENT= Super-user exec wrapper
NO_WRKSUBDIR= yes
PORTDOCS= README
PLIST_FILES= bin/${PORTNAME}
EXECWRAP_VARS= PARENT_UID TARGET_MIN_UID TARGET_MIN_GID \
TARGET_PATH_PREFIX DEFAULT_UID DEFAULT_GID
EXECWRAP_TARGET_PATH_PREFIX?= "${WWWDIR:S|/${PORTNAME}$||}"
.for _var in ${EXECWRAP_VARS}
. ifdef EXECWRAP_${_var}
_SED_LINE+= s|${_var}.*|${_var} ${EXECWRAP_${_var}}|;
. endif
.endfor
post-patch:
@${REINPLACE_CMD} -e '${_SED_LINE}' ${WRKSRC}/execwrap_config.h
pre-build:
@${ECHO_CMD} "============================================"
@${ECHO_CMD} "You can use the following variables to tweak"
@${ECHO_CMD} "compile-time options:"
@for opt in ${EXECWRAP_VARS:S|^|EXECWRAP_|};do ${ECHO_MSG} " $$opt";done
@${ECHO_CMD} "============================================"
do-build:
@cd ${WRKSRC}/ && ${CC} ${CFLAGS} -o ${PORTNAME} ${PORTNAME}.c
do-install:
@${INSTALL_PROGRAM} -m 4511 ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
.ifndef NOPORTDOCS
@${INSTALL} -d ${DOCSDIR}/
@${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}/
.endif
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
MD5 (ExecWrap-0.4.tgz) = 4b6ed65a2f72cfcc8a5d69410807ab57
SHA256 (ExecWrap-0.4.tgz) = 4bb6c95aa8cb06fab90e595944e89c2e6f75eab0d8c6cf807b5fc477b1966dad
SIZE (ExecWrap-0.4.tgz) = 7439

View file

@ -0,0 +1,6 @@
ExecWrap is a super-user exec wrapper for the lighttpd web-server, but
it can be used in any environment as long as arguments can be passed
from the server to its children via the environment.
WWW: http://cyanite.org/execwrap/
Author: Sune Foldager <cryo@cyanite.org>