summaryrefslogtreecommitdiff
path: root/dev-cpp/glibmm/glibmm-2.70.0.ebuild
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2021-12-17 18:42:01 -0500
committerMatt Turner <mattst88@gentoo.org>2021-12-17 22:47:09 -0500
commit1e0a70d9a8899bcbfb39fec1e1d0b89ae67e19b9 (patch)
tree06fbd2a891745ebd917aae132970c103e949e23c /dev-cpp/glibmm/glibmm-2.70.0.ebuild
parent9db419d290d931d05e4bef7cd0305ac88fa532a1 (diff)
downloadgentoo-1e0a70d9a8899bcbfb39fec1e1d0b89ae67e19b9.tar.gz
gentoo-1e0a70d9a8899bcbfb39fec1e1d0b89ae67e19b9.tar.bz2
gentoo-1e0a70d9a8899bcbfb39fec1e1d0b89ae67e19b9.zip
dev-cpp/glibmm: Version bump to 2.70.0
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-cpp/glibmm/glibmm-2.70.0.ebuild')
-rw-r--r--dev-cpp/glibmm/glibmm-2.70.0.ebuild52
1 files changed, 52 insertions, 0 deletions
diff --git a/dev-cpp/glibmm/glibmm-2.70.0.ebuild b/dev-cpp/glibmm/glibmm-2.70.0.ebuild
new file mode 100644
index 000000000000..8cf7ffdce6e5
--- /dev/null
+++ b/dev-cpp/glibmm/glibmm-2.70.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{8..10} )
+inherit gnome.org meson-multilib python-any-r1
+
+DESCRIPTION="C++ interface for glib2"
+HOMEPAGE="https://www.gtkmm.org"
+
+LICENSE="LGPL-2.1+"
+SLOT="2.68"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+IUSE="doc debug test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=dev-libs/glib-2.69.1:2[${MULTILIB_USEDEP}]
+ dev-libs/libsigc++:3[doc?,${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ ${PYTHON_DEPS}
+ virtual/pkgconfig
+ 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 doc build-documentation)
+ $(meson_use debug debug-refcounting)
+ -Dbuild-examples=false
+ )
+ meson_src_configure
+}