77d68471ad
PR: 267994 Differential revision: D37518 Approved by: bapt
31 lines
1 KiB
Makefile
31 lines
1 KiB
Makefile
PORTNAME= butterfly
|
|
PORTVERSION= 2.0.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= www
|
|
MASTER_SITES= PYPI
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Web terminal based on websocket and tornado
|
|
WWW= https://pypi.org/project/butterfly/
|
|
|
|
LICENSE= GPLv3
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}openssl>0:security/py-openssl@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}tornado>0:www/py-tornado@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}libsass>0:www/py-libsass@${PY_FLAVOR}
|
|
|
|
USES= python:3.6+
|
|
# Can't use concurrent here, it changes ETCDIR, and breaks post-install.
|
|
USE_PYTHON= autoplist distutils optsuffix
|
|
NO_ARCH= yes
|
|
USE_RC_SUBR= butterfly
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST= PYTHON_CMD=${PYTHON_CMD}
|
|
|
|
post-install:
|
|
@${REINPLACE_CMD} -i '' -e "s|^butterfly_dir = os.path.join(ev, 'butterfly')|butterfly_dir = '${PREFIX}/etc/butterfly'|g" \
|
|
${STAGEDIR}${PREFIX}/bin/butterfly.server.py
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/butterfly/ssl
|
|
${INSTALL_DATA} ${WRKSRC}/butterfly/butterfly.conf.default ${STAGEDIR}${ETCDIR}/butterfly.conf.sample
|
|
|
|
.include <bsd.port.mk>
|