diff options
author | 2020-04-28 00:02:43 -0700 | |
---|---|---|
committer | 2020-04-28 09:38:16 -0700 | |
commit | 67efc97b265a55072746a52db8b34110ff570ee5 (patch) | |
tree | a8c9792701b331638cebae6199cb9fcafccbd90f /dev-cpp/glibmm/glibmm-2.64.2.ebuild | |
parent | dev-cpp/mm-common: Version bump to 1.0.0 (diff) | |
download | gentoo-67efc97b265a55072746a52db8b34110ff570ee5.tar.gz gentoo-67efc97b265a55072746a52db8b34110ff570ee5.tar.bz2 gentoo-67efc97b265a55072746a52db8b34110ff570ee5.zip |
dev-cpp/glibmm: Version bump to 2.64.2
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-cpp/glibmm/glibmm-2.64.2.ebuild')
-rw-r--r-- | dev-cpp/glibmm/glibmm-2.64.2.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/dev-cpp/glibmm/glibmm-2.64.2.ebuild b/dev-cpp/glibmm/glibmm-2.64.2.ebuild new file mode 100644 index 000000000000..6889d9dd390b --- /dev/null +++ b/dev-cpp/glibmm/glibmm-2.64.2.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit gnome.org meson multilib-minimal + +DESCRIPTION="C++ interface for glib2" +HOMEPAGE="https://www.gtkmm.org" + +LICENSE="LGPL-2.1+" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="doc debug test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/libsigc++-2.9.1:2[${MULTILIB_USEDEP}] + >=dev-libs/glib-2.61.2:2[${MULTILIB_USEDEP}] +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + doc? ( app-doc/doxygen ) + >=dev-cpp/mm-common-1.0.0 +" + +src_prepare() { + default + + if ! use test; then + sed -i -e "/^subdir('tests')/d" meson.build || die + fi +} + +multilib_src_configure() { + local emesonargs=( + -Dmaintainer-mode=true + -Dwarnings=min + -Dbuild-deprecated-api=true + -Dbuild-documentation=$(usex doc true false) + -Ddebug-refcounting=$(usex debug true false) + -Dbuild-examples=false + ) + meson_src_configure +} + +multilib_src_compile() { + meson_src_compile +} + +multilib_src_test() { + meson_src_test +} + +multilib_src_install() { + meson_src_install +} |