diff options
author | Guillermo Joandet <gjoandet@gmail.com> | 2023-09-02 18:32:04 -0300 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2023-09-04 11:53:53 -0400 |
commit | 8f2de38501d5ecf0d666a55f86a8514d7812b151 (patch) | |
tree | 3afcf4bfb549508ef2c714e7b22fd43afffdddd6 /net-misc/gnome-connections | |
parent | gnome-extra/gnome-calculator: Version bump to 45.0.1 (diff) | |
download | gentoo-8f2de38501d5ecf0d666a55f86a8514d7812b151.tar.gz gentoo-8f2de38501d5ecf0d666a55f86a8514d7812b151.tar.bz2 gentoo-8f2de38501d5ecf0d666a55f86a8514d7812b151.zip |
net-misc/gnome-connections: Version bump to 45_rc
Signed-off-by: Guillermo Joandet <gjoandet@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32572
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'net-misc/gnome-connections')
-rw-r--r-- | net-misc/gnome-connections/Manifest | 1 | ||||
-rw-r--r-- | net-misc/gnome-connections/gnome-connections-45_rc.ebuild | 63 |
2 files changed, 64 insertions, 0 deletions
diff --git a/net-misc/gnome-connections/Manifest b/net-misc/gnome-connections/Manifest index dafe14c60951..c21dc5e54ee4 100644 --- a/net-misc/gnome-connections/Manifest +++ b/net-misc/gnome-connections/Manifest @@ -1,2 +1,3 @@ DIST gnome-connections-44.1.tar.xz 3999000 BLAKE2B 62f811a5cf530d3b38b576217d004d982f051a12bd3e525499d7fa4466538a1c8a2d4713f15cb0862d753f06a1f624f8fa87b80498ecbb461e7e7a545cb8c4d5 SHA512 34878e51ae67b222f8c5a00524bf2f3f24b9bc989ceccd707028ecdec612d81d3dc5e187e000f6e870e1cf816a66342cb8e9e9aaf7a6296950e1efa5b8a0d47e DIST gnome-connections-45.beta.tar.xz 4006576 BLAKE2B 98c229699490c8c66ec1e350c01b7063d45b08ffd138afea73250ebd9fd68be0f6caf60382651c7d4d05591439c51dae6a169ed8ba5b5207bf4a81815a0ede4f SHA512 17cb276647d0ae96a729e43d1ae4e8a57f94880e636e0162f4685e72ed1d0fe6996b8926a932918812a954bc052cd5e5e44ed32a0b0dbcc648c0ae373e4eebd7 +DIST gnome-connections-45.rc.tar.xz 4006984 BLAKE2B 84b496f650dcd867fb52b90837e31bd9c9308e555a486372ee612f74b41ea2ea4497d9d60e0e64172977d93c1b314fdcccde50dbdf828817561ce0348d9c440d SHA512 866e15632928a1a996f4388cf08c15c403dde81dfd4d24cb0c53ded268f67066162584b44aee7067f3a08fc117ab01abb357d227494182c73d04074137c90b57 diff --git a/net-misc/gnome-connections/gnome-connections-45_rc.ebuild b/net-misc/gnome-connections/gnome-connections-45_rc.ebuild new file mode 100644 index 000000000000..325726aeadc2 --- /dev/null +++ b/net-misc/gnome-connections/gnome-connections-45_rc.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson vala xdg + +DESCRIPTION="A remote desktop client for the GNOME desktop environment" +HOMEPAGE="https://gitlab.gnome.org/GNOME/connections" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +DEPEND=" + dev-libs/gobject-introspection + >=dev-libs/glib-2.50:2 + >=x11-libs/gtk+-3.22:3[introspection] + >=net-libs/gtk-vnc-0.4.4[pulseaudio,vala] + >=gui-libs/libhandy-1.6.0:1[vala] + >=dev-libs/libxml2-2.7.8 + app-crypt/libsecret[vala] + + >=net-misc/freerdp-2.0.0:0= +" +RDEPEND="${DEPEND}" +BDEPEND=" + $(vala_depend) + dev-libs/glib + dev-util/glib-utils + dev-util/itstool + sys-devel/gettext + virtual/pkgconfig + + test? ( + dev-libs/appstream-glib + dev-util/desktop-file-utils + ) +" + +src_prepare() { + default + vala_setup +} + +src_configure() { + local emesonargs=( + -Dprofile=default + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} |