diff --git a/dev-cpp/mm-common/Manifest b/dev-cpp/mm-common/Manifest index 8578c2a193f70..01dc69b8b870b 100644 --- a/dev-cpp/mm-common/Manifest +++ b/dev-cpp/mm-common/Manifest @@ -1,2 +1,3 @@ DIST mm-common-1.0.6.tar.xz 287832 BLAKE2B b633f37a470b558c16ce4a260384913ddc64df2ac94e25e2b7b05300c5c7b51826477bff655154572bd7eafe583b4cb056e7c9dee3d3e699dbf200490da0591f SHA512 2141ce9dabdae153e5708b09d30e7917182888e521ff0c2a4f85c7ec2dd86b2c8753e0513bf9c9f9a00d4e579173ffa859a3efd006e706fdfa2f33b0e77af48b DIST mm-common-1.0.7.tar.xz 283032 BLAKE2B 1db74b45682cabd165db6a03e38ddc546e5205dffbae83e72f1148071885ba8a73b3bd3aa012f3a7348631f078880a6a82be20b96419133650c671d10851b9a0 SHA512 59b5ad026d5970816eca71858bd08604ecdc43cadcf0455f0be5f233d46210c0499600b80accaad222085852d60cd4cca4c209fde6eea027a85b0244f3e3dece +DIST mm-common-1.0.8.tar.xz 283552 BLAKE2B ef9257d5dcf5cf4cae7049315bb6accc41a9be005636b6ee481e977f538f3aee6f890cd19ab9ffdb2337ce62c3c996ba8702568c7e4d50683ce109b0172ff15a SHA512 302bea8b5b66d53e52a6f2ce2b999de228e86c74c1aa262687ab229cbc618f017dd94d1910e59dd205ede190bd0988767935dbdd3dadbda0b044b0fe9e76a344 diff --git a/dev-cpp/mm-common/mm-common-1.0.8.ebuild b/dev-cpp/mm-common/mm-common-1.0.8.ebuild new file mode 100644 index 0000000000000..0cb086d089fd8 --- /dev/null +++ b/dev-cpp/mm-common/mm-common-1.0.8.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{12..14} ) +inherit gnome.org python-any-r1 meson + +DESCRIPTION="Build infrastructure and utilities for GNOME C++ bindings" +HOMEPAGE="https://gtkmm.gnome.org/en/index.html" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" + +BDEPEND="${PYTHON_DEPS}" + +src_prepare() { + default + + # Include project version in docdir name + sed -i -e "s:^install_docdir.*:& + '-' + meson.project_version():" meson.build || die +} + +src_configure(){ + local emesonargs=( + -Duse-network=false + ) + meson_src_configure +}