1
1
mirror of https://github.com/wez/wezterm.git synced 2025-01-03 03:04:04 +03:00

get-deps for Gentoo (#1843)

Support Gentoo
This commit is contained in:
TANIGUCHI Masaya 2022-04-10 06:03:50 +09:00 committed by GitHub
parent 096259a2d4
commit ae78c7d6c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -116,6 +116,29 @@ if test -e /etc/arch-release ; then
exit $? exit $?
fi fi
if test -e /etc/gentoo-release ; then
portageq envvar USE | xargs -n 1 | grep '^X$' \
|| (echo 'X is not found in USE flags' && exit 1)
EMERGE="$SUDO emerge"
$EMERGE --select \
'cmake' \
'fontconfig' \
'openssl' \
'git' \
'libX11' \
'libxkbcommon' \
'pkgconf' \
'python' \
'perl' \
'wayland' \
'mesa' \
'xcb-util' \
'xcb-util-image' \
'xcb-util-keysyms' \
'xcb-util-wm'
exit $?
fi
case $OSTYPE in case $OSTYPE in
darwin*|msys) darwin*|msys)
exit 0 exit 0