blob: 5f964e08b41fa706f245079fa5c1842024b8cf77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
PORTNAME= wezterm
DISTVERSION= 20221119-145034-49b9839f
PORTREVISION= 3
CATEGORIES= x11 wayland
MAINTAINER= jbeich@FreeBSD.org
COMMENT= GPU-accelerated terminal emulator and multiplexer
WWW= https://wezfurlong.org/wezterm/
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.md
LIB_DEPENDS= libwayland-egl.so:graphics/wayland \
libssh2.so:security/libssh2 \
libfontconfig.so:x11-fonts/fontconfig \
libxkbcommon-x11.so:x11/libxkbcommon \
libxcb-util.so:x11/xcb-util \
libxcb-image.so:x11/xcb-util-image
USES= cargo ssl xorg
USE_GITHUB= yes
USE_GITLAB= nodefault
USE_XORG= x11 xcb
GH_ACCOUNT= wez
GH_TUPLE= harfbuzz:harfbuzz:5.3.1:harfbuzz/deps/harfbuzz/harfbuzz \
glennrp:libpng:v1.6.36-805-g8439534da:libpng/deps/freetype/libpng \
madler:zlib:v1.2.11:zlib/deps/freetype/zlib \
fcitx:xcb-imdkit:1.0.3:xcb_imdkit/../xcb-imdkit-rs-0135194dea52e88c6ba830762fdcc7db99b68839/deps/xcb-imdkit \
freetype:freetype:VER-2-10-2-605-g3f83daeec:freetype/deps/freetype/freetype2
GL_TUPLE= wez1:libssh-mirror:56e1b0a43a7601d3b2989299262a09db5d81eea0:libssh/../libssh-rs-d36e5648274063c187968fd5ce0b1a7aa350a025/libssh-rs-sys/vendored
PLIST_FILES= bin/strip-ansi-escapes \
bin/${PORTNAME} \
bin/${PORTNAME}-gui \
bin/${PORTNAME}-mux-server \
etc/profile.d/${PORTNAME}.sh \
share/applications/org.wezfurlong.wezterm.desktop \
share/icons/hicolor/128x128/apps/org.wezfurlong.wezterm.png \
share/icons/hicolor/scalable/apps/org.wezfurlong.wezterm.svg \
share/metainfo/org.wezfurlong.wezterm.appdata.xml \
share/nautilus-python/extensions/${PORTNAME}-nautilus.py \
${NULL}
# XXX https://github.com/rust-lang/cargo/issues/4101
CARGO_INSTALL_PATH= ${PLIST_FILES:Mbin/*:T}
.if exists(/usr/bin/tic)
PKGMESSAGE= ${NONEXISTENT}
PLIST_FILES+= share/site-terminfo/${PORTNAME:C,^.,&/&,}
.endif
OPTIONS_DEFINE= DOCS
DOCS_USES= python:3.4+,build
DOCS_BUILD_DEPENDS= mdbook:textproc/mdbook \
mdbook-linkcheck:textproc/mdbook-linkcheck \
mdbook-mermaid:textproc/mdbook-mermaid
PORTDOCS= html
post-patch:
# Extract (snapshot) version from the port instead of .tag file
@${ECHO_CMD} '${DISTVERSIONFULL}' >${WRKSRC}/.tag
# Respect LOCALBASE for cursors
@${REINPLACE_CMD} 's,/usr/share,${LOCALBASE}/share,' \
${WRKSRC}/window/src/os/x11/cursor.rs
do-build-DOCS-on:
# Build HTML documentation similar to ci/build-docs.sh
(cd ${WRKSRC} && ${PYTHON_CMD} ci/generate-docs.py)
mdbook-mermaid install ${WRKSRC}/docs
mdbook build ${WRKSRC}/docs
${CP} ${WRKSRC}/assets/icon/terminal.png \
${WRKSRC}/gh_pages/html/favicon.png
${CP} ${WRKSRC}/assets/icon/${PORTNAME}-icon.svg \
${WRKSRC}/gh_pages/html/favicon.svg
do-install-DOCS-on:
(cd ${WRKSRC}/gh_pages && ${COPYTREE_SHARE} \
"${PORTDOCS:Mhtml}" ${STAGEDIR}${DOCSDIR})
post-install:
# Install assets similar to ci/deploy.sh
.for f in ${PORTNAME}.desktop ${PORTNAME}.appdata.xml ${PORTNAME}-nautilus.py \
icon/terminal.png icon/${PORTNAME}-icon.svg shell-integration/${PORTNAME}.sh
${MKDIR} ${STAGEDIR}${PREFIX}/${PLIST_FILES:M*.${f:E}:H}
${INSTALL_DATA} ${WRKSRC}/assets/${f:R}.${f:E} \
${STAGEDIR}${PREFIX}/${PLIST_FILES:M*.${f:E}}
.endfor
.if exists(/usr/bin/tic)
tic -x -o ${STAGEDIR}${PREFIX}/${PLIST_FILES:M*terminfo*:[1]:H:H} \
${WRKSRC}/termwiz/data/${PORTNAME}.terminfo
.endif
.include <bsd.port.mk>
|