9ca7ae95f4
Note that this is (mostly) a security fix release. Changes since last packaged version (2.2.3): 2.3.0 - modified chroot_helper to parse the config file, to avoid arbitrary chroot() (and thus root compromise) - numerous documentation updates - fix for va_start()/va_end()-related segfault on 64-bit architecture - small bit of code cleanup
53 lines
1.5 KiB
Makefile
53 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.7 2005/12/28 17:55:39 seb Exp $
|
|
#
|
|
|
|
DISTNAME= rssh-2.3.0
|
|
CATEGORIES= shells security
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=rssh/}
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://rssh.sourceforge.net/
|
|
COMMENT= Restricted shell allowing only scp and/or sftp
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_PKGINSTALL= yes
|
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
|
|
.if !exists(/usr/include/wordexp.h)
|
|
PKG_SKIP_REASON+= "${PKGNAME} requires wordexp(3)"
|
|
.endif
|
|
|
|
EGDIR= ${PREFIX}/share/examples/rssh
|
|
INSTALLATION_DIRS= share/examples/rssh
|
|
CONF_FILES= ${EGDIR}/rssh.conf ${PKG_SYSCONFDIR}/rssh.conf
|
|
PKG_SHELL?= bin/rssh
|
|
|
|
SPECIAL_PERMS+= ${PREFIX}/libexec/rssh_chroot_helper ${SETUID_ROOT_PERMS}
|
|
|
|
BUILD_DEFS+= RSSH_SCP_PATH
|
|
BUILD_DEFS+= RSSH_SFTP_SERVER_PATH
|
|
BUILD_DEFS+= RSSH_CVS_PATH
|
|
BUILD_DEFS+= RSSH_RDIST_PATH
|
|
BUILD_DEFS+= RSSH_RSYNC_PATH
|
|
|
|
.if defined(RSSH_SCP_PATH) && !empty(RSSH_SCP_PATH)
|
|
CONFIGURE_ARGS+= --with-scp=${RSSH_SCP_PATH:Q}
|
|
.endif
|
|
.if defined(RSSH_SFTP_SERVER_PATH) && !empty(RSSH_SFTP_SERVER_PATH)
|
|
CONFIGURE_ARGS+= --with-sftp-server=${RSSH_SFTP_SERVER_PATH:Q}
|
|
.endif
|
|
.if defined(RSSH_CVS_PATH) && !empty(RSSH_CVS_PATH)
|
|
CONFIGURE_ARGS+= --with-cvs=${RSSH_CVS_PATH:Q}
|
|
.endif
|
|
.if defined(RSSH_RDIST_PATH) && !empty(RSSH_RDIST_PATH)
|
|
CONFIGURE_ARGS+= --with-rdist=${RSSH_RDIST_PATH:Q}
|
|
.endif
|
|
.if defined(RSSH_RSYNC_PATH) && !empty(RSSH_RSYNC_PATH)
|
|
CONFIGURE_ARGS+= --with-rsync=${RSSH_RSYNC_PATH:Q}
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/rssh.conf ${EGDIR}/rssh.conf
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|