pkgsrc/shells/rssh/Makefile
jlam 9c8b5ede43 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
2006-03-04 21:28:51 +00:00

52 lines
1.5 KiB
Makefile

# $NetBSD: Makefile,v 1.10 2006/03/04 21:30:39 jlam Exp $
#
DISTNAME= rssh-2.3.2
CATEGORIES= shells security
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=rssh/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://rssh.sourceforge.net/
COMMENT= Restricted shell allowing only scp and/or sftp
GNU_CONFIGURE= 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"