71 lines
1.9 KiB
Makefile
71 lines
1.9 KiB
Makefile
PORTNAME= fish
|
|
DISTVERSION= 4.3.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= shells
|
|
MASTER_SITES= https://github.com/fish-shell/fish-shell/releases/download/${PORTVERSION}/
|
|
|
|
MAINTAINER= asomers@FreeBSD.org
|
|
COMMENT= User friendly command line shell
|
|
WWW= https://fishshell.com/
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= ${RUST_DEFAULT}>=1.70.0:lang/${RUST_DEFAULT}
|
|
LIB_DEPENDS= libpcre2-32.so:devel/pcre2
|
|
|
|
# The python dependency is only needed by shebangfix. At runtime python is
|
|
# only needed by some optional scripts that aren't in PATH.
|
|
USES= cargo cmake cpe localbase ncurses python:env shebangfix tar:xz
|
|
DISTFILES+= ${DISTNAME}${EXTRACT_SUFX}
|
|
CPE_VENDOR= fishshell
|
|
SHEBANG_FILES= share/tools/*.py share/tools/web_config/webconfig.py
|
|
# We need USES=cargo for fetching crates. But the actual build is done by
|
|
# cmake.
|
|
CARGO_BUILD= no
|
|
CARGO_INSTALL= no
|
|
|
|
CONFLICTS_INSTALL= comms/mlan3
|
|
|
|
MANDIRS= ${DATADIR}/man
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS MANPAGES NLS
|
|
OPTIONS_DEFAULT= MANPAGES NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
MANPAGES_BUILD_DEPENDS= sphinx-build:textproc/py-sphinx@${PY_FLAVOR}
|
|
MANPAGES_CMAKE_BOOL= WITH_DOCS
|
|
MANPAGES_VARS= MAKE_JOBS_UNSAFE=yes
|
|
|
|
NLS_USES= gettext
|
|
NLS_CMAKE_BOOL= WITH_GETTEXT
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${NCURSESBASE:M${LOCALBASE}}
|
|
CMAKE_ARGS+= -DCURSES_NEED_NCURSES=TRUE
|
|
.endif
|
|
|
|
post-install:
|
|
@${MV} ${STAGEDIR}${ETCDIR}/config.fish ${STAGEDIR}${ETCDIR}/config.fish.sample
|
|
|
|
post-install-DOCS-on:
|
|
@${RM} ${STAGEDIR}${DOCSDIR}/.buildinfo
|
|
|
|
post-install-DOCS-off:
|
|
# required because fish always installs documentation
|
|
@${ECHO_MSG} "====> DOCS disable; removing documentation"
|
|
@${RM} -r ${STAGEDIR}${DOCSDIR}
|
|
|
|
post-install-MANPAGES-off:
|
|
# required because fish always installs manual pages
|
|
@${ECHO_MSG} "====> MANPAGES disable; removing manual pages"
|
|
for dir in ${MANDIRS:S/^/${STAGEDIR}/} ; do \
|
|
${FIND} $$dir -type f -delete ; \
|
|
done
|
|
@${RM} -r ${STAGEDIR}${DATADIR}/man
|
|
|
|
.include <bsd.port.post.mk>
|