mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
b9398223bd
Approved by: portmgr blanket
30 lines
597 B
Makefile
30 lines
597 B
Makefile
# Created by: Sylvio Cesar <scjamorim@bsd.com.br>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lshell
|
|
PORTVERSION= 0.9.16
|
|
PORTREVISION= 1
|
|
CATEGORIES= shells
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Shell environment to limited sets of commands to users
|
|
|
|
LICENSE= GPLv3+
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
"s|(.*lshell.conf.*),|| ; \
|
|
s|/etc|etc| ; \
|
|
s|share/man|man| ; \
|
|
s|'COPYING',||" ${WRKSRC}/setup.py
|
|
|
|
post-install:
|
|
(cd ${WRKSRC}/etc && ${INSTALL_DATA} ${PORTNAME}.conf \
|
|
${STAGEDIR}${PREFIX}/etc/${PORTNAME}.conf.sample)
|
|
|
|
.include <bsd.port.mk>
|