8fa9a0fe46
Changes since 4.3: - fix support for quota and passwd when running within the chroot (exec pre-chroot) - disallow rsync and svnserve from being run as daemons that listen on a port - switch to getopt_long for command processing, use getopt for sftp-server, svnserve, and quota - abort processing on commands that require getopt when getopt is not available - switched to slightly optimized and more compact debug code - fix unison support within chroots - fix for unison command execution bug - allow multiple users with the same uid using USER environment variable - added missing semicolon to helper.c - fixes the configure.in script to not define HAVE_OPTRESET, not even to a value of 0 - fixes that hopefully improve the optarg compilation situation - UNISON $HOME environment fix - fixes to setup_chroot.sh/in
37 lines
1.3 KiB
Makefile
37 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.12 2008/04/29 03:46:57 snj Exp $
|
|
|
|
DISTNAME= scponly-4.8
|
|
CATEGORIES= shells security
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=scponly/}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= snj@NetBSD.org
|
|
HOMEPAGE= http://sublimation.org/scponly/wiki/
|
|
COMMENT= Shell that only permits sftp
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_TOOLS+= chgrp chmod chown echo id ln ls mkdir mv pwd rm rmdir
|
|
CONFIGURE_ENV+= scponly_PROG_CHGRP=${TOOLS_CHGRP:Q}
|
|
CONFIGURE_ENV+= PROG_CHMOD=${TOOLS_CHMOD:Q}
|
|
CONFIGURE_ENV+= scponly_PROG_CHMOD=${TOOLS_CHMOD:Q}
|
|
CONFIGURE_ENV+= PROG_CHOWN=${TOOLS_CHOWN:Q}
|
|
CONFIGURE_ENV+= scponly_PROG_CHOWN=${TOOLS_CHOWN:Q}
|
|
CONFIGURE_ENV+= ac_cv_path_scponly_PROG_ECHO=${TOOLS_ECHO:Q}
|
|
CONFIGURE_ENV+= scponly_PROG_ID=${TOOLS_ID:Q}
|
|
CONFIGURE_ENV+= scponly_PROG_LN=${TOOLS_LN:Q}
|
|
CONFIGURE_ENV+= scponly_PROG_LS=${TOOLS_LS:Q}
|
|
CONFIGURE_ENV+= scponly_PROG_MKDIR=${TOOLS_MKDIR:Q}
|
|
CONFIGURE_ENV+= scponly_PROG_MV=${TOOLS_MV:Q}
|
|
CONFIGURE_ENV+= scponly_PROG_PWD=${TOOLS_PWD_CMD:Q}
|
|
CONFIGURE_ENV+= PROG_RM=${TOOLS_RM:Q}
|
|
CONFIGURE_ENV+= scponly_PROG_RM=${TOOLS_RM:Q}
|
|
CONFIGURE_ENV+= scponly_PROG_RMDIR=${TOOLS_RMDIR:Q}
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
PKG_SHELL= bin/scponly
|
|
PKG_SYSCONFSUBDIR= scponly
|
|
|
|
EGDIR= ${PREFIX}/share/examples/scponly
|
|
CONF_FILES= ${EGDIR}/debuglevel ${PKG_SYSCONFDIR}/debuglevel
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|