mirror of
https://git.freebsd.org/ports.git
synced 2025-06-17 02:30:44 -04:00
Bug fixes: - rlwrap enables bracketed-paste when instructed to do so by .inputrc, but would then never disable it at exit. - rlwrap -z (i.e. rlwrap when using a filter) would still open /tmp/rlwrap.debug after forking the filter command, preventing other users from running it afterwards PR: 256569
34 lines
726 B
Makefile
34 lines
726 B
Makefile
# Created by: ijliao
|
|
|
|
PORTNAME= rlwrap
|
|
DISTVERSION= 0.45.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://github.com/hanslub42/rlwrap/releases/download/v${DISTVERSION}/
|
|
|
|
MAINTAINER= gamato@users.sf.net
|
|
COMMENT= Readline wrapper
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= autoreconf python readline shebangfix
|
|
PYTHON_NO_DEPENDS= yes
|
|
SHEBANG_GLOB= *.py
|
|
SHEBANG_FILES= filters/dissect_prompt \
|
|
filters/handle_sigwinch \
|
|
filters/makefilter
|
|
python_OLD_CMD= "/usr/bin/env python3"
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
PORTDOCS= AUTHORS BUGS NEWS README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|