diff options
| author | Guillermo Joandet <gjoandet@gmail.com> | 2023-09-12 08:57:49 -0300 |
|---|---|---|
| committer | Matt Turner <mattst88@gentoo.org> | 2023-09-12 09:31:13 -0400 |
| commit | 2fa576a0a223096b13d0725b7cebb9198af8e204 (patch) | |
| tree | a253912834c6eb988ce7ac51b90e18c748234e2a /dev-cpp/glibmm/glibmm-2.78.0.ebuild | |
| parent | d57056ee227b0cfd7948b9cd531e44c7496174b1 (diff) | |
| download | gentoo-2fa576a0a223096b13d0725b7cebb9198af8e204.tar.gz gentoo-2fa576a0a223096b13d0725b7cebb9198af8e204.tar.bz2 gentoo-2fa576a0a223096b13d0725b7cebb9198af8e204.zip | |
dev-cpp/glibmm: Version bump to 2.78.0
Signed-off-by: Guillermo Joandet <gjoandet@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32737
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-cpp/glibmm/glibmm-2.78.0.ebuild')
| -rw-r--r-- | dev-cpp/glibmm/glibmm-2.78.0.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/dev-cpp/glibmm/glibmm-2.78.0.ebuild b/dev-cpp/glibmm/glibmm-2.78.0.ebuild new file mode 100644 index 000000000000..173a52b240fe --- /dev/null +++ b/dev-cpp/glibmm/glibmm-2.78.0.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) +inherit gnome.org meson-multilib python-any-r1 + +DESCRIPTION="C++ interface for glib2" +HOMEPAGE="https://www.gtkmm.org https://gitlab.gnome.org/GNOME/glibmm" + +LICENSE="LGPL-2.1+" +SLOT="2.68" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="gtk-doc debug test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/glib-2.77.0:2[${MULTILIB_USEDEP}] + dev-libs/libsigc++:3[gtk-doc?,${MULTILIB_USEDEP}] +" +DEPEND="${RDEPEND}" +BDEPEND=" + ${PYTHON_DEPS} + virtual/pkgconfig + gtk-doc? ( + app-doc/doxygen[dot] + dev-lang/perl + dev-libs/libxslt + ) +" + +src_prepare() { + default + + # giomm_tls_client requires FEATURES=-network-sandbox and glib-networking rdep + sed -i -e '/giomm_tls_client/d' tests/meson.build || die + + if ! use test; then + sed -i -e "/^subdir('tests')/d" meson.build || die + fi +} + +multilib_src_configure() { + local emesonargs=( + -Dwarnings=min + -Dbuild-deprecated-api=true + $(meson_native_use_bool gtk-doc build-documentation) + $(meson_use debug debug-refcounting) + -Dbuild-examples=false + ) + meson_src_configure +} |
