summaryrefslogtreecommitdiff
path: root/dev-cpp/glibmm/glibmm-2.68.2.ebuild
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2022-03-18 12:17:20 -0700
committerMatt Turner <mattst88@gentoo.org>2022-03-18 12:22:41 -0700
commitb846513de63b2c664f34c643e75ac02f4e09a43c (patch)
tree92873ec397ad86250ae7f94ab26e6f71ba42bfa3 /dev-cpp/glibmm/glibmm-2.68.2.ebuild
parent2999d07c4f12ceb164069e76ed7f023e7e924d44 (diff)
downloadgentoo-b846513de63b2c664f34c643e75ac02f4e09a43c.tar.gz
gentoo-b846513de63b2c664f34c643e75ac02f4e09a43c.tar.bz2
gentoo-b846513de63b2c664f34c643e75ac02f4e09a43c.zip
dev-cpp/glibmm: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-cpp/glibmm/glibmm-2.68.2.ebuild')
-rw-r--r--dev-cpp/glibmm/glibmm-2.68.2.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/dev-cpp/glibmm/glibmm-2.68.2.ebuild b/dev-cpp/glibmm/glibmm-2.68.2.ebuild
deleted file mode 100644
index 4fd62005baba..000000000000
--- a/dev-cpp/glibmm/glibmm-2.68.2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{7..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.63.0: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
-}