97 lines
2.9 KiB
Bash
97 lines
2.9 KiB
Bash
|
# Copyright 1999-2022 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=8
|
||
|
PYTHON_COMPAT=( python3_{8..11} )
|
||
|
inherit gnome.org gnome2-utils meson python-any-r1 readme.gentoo-r1 xdg
|
||
|
|
||
|
DESCRIPTION="A terminal emulator for GNOME"
|
||
|
HOMEPAGE="https://wiki.gnome.org/Apps/Terminal/ https://gitlab.gnome.org/GNOME/gnome-terminal"
|
||
|
|
||
|
LICENSE="GPL-3+"
|
||
|
SLOT="0"
|
||
|
IUSE="debug +gnome-shell +nautilus vanilla"
|
||
|
|
||
|
# Upstream is hostile and refuses to upload tarballs.
|
||
|
SRC_URI="https://gitlab.gnome.org/GNOME/${PN}/-/archive/${PV}/${P}.tar.gz"
|
||
|
SRC_URI+=" !vanilla? ( https://dev.gentoo.org/~mattst88/distfiles/${PN}-3.46.2-cntr-ntfy-autottl-ts.patch.xz )"
|
||
|
|
||
|
KEYWORDS="~amd64 ~arm64"
|
||
|
|
||
|
# FIXME: automagic dependency on gtk+[X], just transitive but needs proper control, bug 624960
|
||
|
RDEPEND="
|
||
|
>=dev-libs/glib-2.52:2
|
||
|
>=x11-libs/gtk+-3.22.27:3
|
||
|
>=x11-libs/vte-0.70.0:2.91[!vanilla?]
|
||
|
>=dev-libs/libpcre2-10
|
||
|
>=gnome-base/gsettings-desktop-schemas-0.1.0
|
||
|
sys-apps/util-linux
|
||
|
gnome-shell? ( gnome-base/gnome-shell )
|
||
|
nautilus? ( >=gnome-base/nautilus-43.0 )
|
||
|
"
|
||
|
DEPEND="${RDEPEND}"
|
||
|
# itstool required for help/* with non-en LINGUAS, see bug #549358
|
||
|
# xmllint required for glib-compile-resources, see bug #549304
|
||
|
BDEPEND="
|
||
|
${PYTHON_DEPS}
|
||
|
dev-libs/libxml2:2
|
||
|
dev-libs/libxslt
|
||
|
dev-util/gdbus-codegen
|
||
|
dev-util/glib-utils
|
||
|
dev-util/itstool
|
||
|
>=sys-devel/gettext-0.19.8
|
||
|
virtual/pkgconfig
|
||
|
"
|
||
|
|
||
|
DOC_CONTENTS="To get previous working directory inherited in new opened tab, or
|
||
|
notifications of long-running commands finishing, you will need
|
||
|
to add the following line to your ~/.bashrc:\n
|
||
|
. /etc/profile.d/vte-2.91.sh"
|
||
|
|
||
|
src_prepare() {
|
||
|
eapply "${FILESDIR}"/${PN}-3.44.1-fix-missing-wexitcode.patch
|
||
|
if ! use vanilla; then
|
||
|
# https://bugzilla.gnome.org/show_bug.cgi?id=695371
|
||
|
# Fedora patches:
|
||
|
# Restore transparency support (with compositing WMs only)
|
||
|
# OSC 777 desktop notification support (notifications on tabs for long-running commands completing)
|
||
|
# Restore "Set title" support
|
||
|
# Automatic title updating based on currently running foreground process
|
||
|
# https://src.fedoraproject.org/rpms/gnome-terminal/raw/f31/f/gnome-terminal-cntr-ntfy-autottl-ts.patch
|
||
|
# Depends on vte[-vanilla] for OSC 777 and the preexec/precmd/etc patches in VTE
|
||
|
eapply "${WORKDIR}"/${PN}-3.46.2-cntr-ntfy-autottl-ts.patch
|
||
|
fi
|
||
|
default
|
||
|
}
|
||
|
|
||
|
src_configure() {
|
||
|
local emesonargs=(
|
||
|
$(meson_use debug dbg)
|
||
|
-Ddocs=false
|
||
|
$(meson_use nautilus nautilus_extension)
|
||
|
$(meson_use gnome-shell search_provider)
|
||
|
)
|
||
|
meson_src_configure
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
meson_src_install
|
||
|
if ! use vanilla; then
|
||
|
# Separate "New Window/Tab" menu entries by default, instead of unified "New Terminal"
|
||
|
insinto /usr/share/glib-2.0/schemas
|
||
|
newins "${FILESDIR}"/separate-new-tab-window.gschema.override org.gnome.Terminal.gschema.override
|
||
|
fi
|
||
|
readme.gentoo_create_doc
|
||
|
}
|
||
|
|
||
|
pkg_postinst() {
|
||
|
xdg_pkg_postinst
|
||
|
gnome2_schemas_update
|
||
|
readme.gentoo_print_elog
|
||
|
}
|
||
|
|
||
|
pkg_postrm() {
|
||
|
xdg_pkg_postrm
|
||
|
gnome2_schemas_update
|
||
|
}
|