diff options
author | Matt Turner <mattst88@gentoo.org> | 2021-04-27 22:42:20 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2021-04-27 22:59:30 -0400 |
commit | 303f556c6c4ecaeac6bcddfa2976bde7b08d8925 (patch) | |
tree | 4f5662ecc88a868fda6ee6c70007b1a0a5a887fd /net-libs/gtk-vnc/gtk-vnc-1.2.0.ebuild | |
parent | gnome-base/gnome-session: Version bump to 40.1 (diff) | |
download | gentoo-303f556c6c4ecaeac6bcddfa2976bde7b08d8925.tar.gz gentoo-303f556c6c4ecaeac6bcddfa2976bde7b08d8925.tar.bz2 gentoo-303f556c6c4ecaeac6bcddfa2976bde7b08d8925.zip |
net-libs/gtk-vnc: Version bump to 1.2.0
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'net-libs/gtk-vnc/gtk-vnc-1.2.0.ebuild')
-rw-r--r-- | net-libs/gtk-vnc/gtk-vnc-1.2.0.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/net-libs/gtk-vnc/gtk-vnc-1.2.0.ebuild b/net-libs/gtk-vnc/gtk-vnc-1.2.0.ebuild new file mode 100644 index 000000000000..5cd29c52ea67 --- /dev/null +++ b/net-libs/gtk-vnc/gtk-vnc-1.2.0.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{7..9} ) + +inherit gnome.org vala meson python-any-r1 xdg + +DESCRIPTION="VNC viewer widget for GTK" +HOMEPAGE="https://wiki.gnome.org/Projects/gtk-vnc" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="+introspection pulseaudio sasl +vala" +REQUIRED_USE="vala? ( introspection )" + +RDEPEND=" + >=dev-libs/glib-2.56.0:2 + >=x11-libs/gdk-pixbuf-2.36.0:2 + >=dev-libs/libgcrypt-1.8.0:0= + >=net-libs/gnutls-3.6.0:0= + >=sys-libs/zlib-1.2.11 + sasl? ( >=dev-libs/cyrus-sasl-2.1.27 ) + >=x11-libs/gtk+-3.22.0:3[introspection?] + >=x11-libs/cairo-1.15.0 + >=x11-libs/libX11-1.6.5 + pulseaudio? ( >=media-sound/pulseaudio-11.0 ) + introspection? ( >=dev-libs/gobject-introspection-1.56.0:= ) +" +# Keymap databases code is generated with python3; configure picks up $PYTHON exported from python-any-r1_pkg_setup +# perl for pod2man +DEPEND="${RDEPEND}" +BDEPEND=" + ${PYTHON_DEPS} + >=dev-lang/perl-5 + dev-util/glib-utils + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig + vala? ( $(vala_depend) ) +" + +PATCHES=( + "${FILESDIR}"/1.0.0-honor-python-ver.patch +) + +src_prepare() { + vala_src_prepare + xdg_src_prepare +} + +src_configure() { + local emesonargs=( + $(meson_feature introspection) + $(meson_feature pulseaudio) + $(meson_feature sasl) + -Dwith-coroutine=auto # gthread on windows, libc ucontext elsewhere; neither has extra deps + $(meson_feature vala with-vala) + ) + meson_src_configure +} |