0.9.4 . Log file name is now configurable using 'logfilename' variable inside the configuration file . Corrected aliases in lshell.conf to work with *BSD 0.9.3 . corrected major bug (alias related) 0.9.2 . added Force SCP directory feature . added command alias feature 0.9.1 . loglevel can now be defined on global, group or user level . corrected sftp support (broken since in 0.9.0) 0.9.0 . version jump to 0.9.0 . corrected bug in case PATH does not exist and allowed set to 'all' . added support for UNIX groups in configuration file . corrected major security bug . corrected path completion . added escape code handling . added flexible +/- possibilities in configuration file . now supports completion after '|', ';' and '&' . Command test are also done after '|', ';' and '&' . Doesn't list hidden directories by default . 4 logging levels . added 'strict' behaviour
37 lines
938 B
Makefile
37 lines
938 B
Makefile
# $NetBSD: Makefile,v 1.2 2009/06/10 08:34:07 imil Exp $
|
|
#
|
|
|
|
DISTNAME= lshell-0.9.4
|
|
CATEGORIES= shells python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=lshell/}
|
|
|
|
MAINTAINER= imil@gcu.info
|
|
HOMEPAGE= http://ghantoos.org/limited-shell-lshell/
|
|
COMMENT= Lshell restricts user's environment to specified commands
|
|
|
|
PKG_GROUPS= lshellg
|
|
PKG_SHELL= bin/lshell
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYDISTUTILSPKG= yes
|
|
|
|
EGDIR= share/examples/lshell
|
|
|
|
SUBST_CLASSES+= setup
|
|
SUBST_STAGE.setup= post-patch
|
|
SUBST_FILES.setup= setup.py
|
|
SUBST_SED.setup= -e 's,/etc,${EGDIR},'
|
|
SUBST_SED.setup+= -e 's,share/man,${PKGMANDIR},'
|
|
|
|
INSTALLATION_DIRS+= ${EGDIR} ${PKGMANDIR}/man1
|
|
|
|
CONF_FILES= ${PREFIX}/${EGDIR}/lshell.conf \
|
|
${PKG_SYSCONFDIR}/lshell.conf
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../devel/py-readline/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|