diff options
author | Guillermo Joandet <gjoandet@gmail.com> | 2023-09-19 12:30:38 -0300 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2023-09-20 21:45:57 -0400 |
commit | bb496163cf157c28767e6e0746661284d1a36f15 (patch) | |
tree | cdd9cf455caa7288ac7c9f5ab6a6d32b28d6efed /gui-apps | |
parent | gui-libs/gtk: Version bump to 4.12.2 (diff) | |
download | gentoo-bb496163cf157c28767e6e0746661284d1a36f15.tar.gz gentoo-bb496163cf157c28767e6e0746661284d1a36f15.tar.bz2 gentoo-bb496163cf157c28767e6e0746661284d1a36f15.zip |
gui-apps/gnome-console: Version bump to 45.0-r1
Signed-off-by: Guillermo Joandet <gjoandet@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32953
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'gui-apps')
-rw-r--r-- | gui-apps/gnome-console/gnome-console-45.0-r1.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/gui-apps/gnome-console/gnome-console-45.0-r1.ebuild b/gui-apps/gnome-console/gnome-console-45.0-r1.ebuild new file mode 100644 index 000000000000..0493159dd6f9 --- /dev/null +++ b/gui-apps/gnome-console/gnome-console-45.0-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="A simple user-friendly terminal emulator for the GNOME desktop" +HOMEPAGE="https://gitlab.gnome.org/GNOME/console" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/glib-2.76:2 + >=gui-libs/gtk-4.12.2:4 + >=gui-libs/libadwaita-1.4_alpha:1 + >=gui-libs/vte-0.70.0:2.91-gtk4 + gnome-base/libgtop:2= + >=dev-libs/libpcre2-10.32:0= + gnome-base/gsettings-desktop-schemas + + x11-libs/pango +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + test? ( + dev-util/desktop-file-utils + dev-libs/appstream-glib + ) +" + +src_configure() { + local emesonargs=( + -Ddevel=false + $(meson_use test tests) + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} |