commit: c4233a245da859098b8a92a7ea0fa2573bb387c5 Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Sat Oct 16 13:58:39 2021 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Sat Oct 16 13:58:39 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4233a24
dev-util/regexxer: port to EAPI 8 Signed-off-by: David Seifert <soap <AT> gentoo.org> dev-util/regexxer/regexxer-0.10-r1.ebuild | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/dev-util/regexxer/regexxer-0.10-r1.ebuild b/dev-util/regexxer/regexxer-0.10-r1.ebuild index 21acdbac8c5..c4f07a75c43 100644 --- a/dev-util/regexxer/regexxer-0.10-r1.ebuild +++ b/dev-util/regexxer/regexxer-0.10-r1.ebuild @@ -1,10 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -GCONF_DEBUG=no +EAPI=7 -inherit autotools epatch flag-o-matic gnome2 +inherit autotools gnome2 DESCRIPTION="An interactive tool for performing search and replace operations" HOMEPAGE="http://regexxer.sourceforge.net/" @@ -14,19 +13,22 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~ppc x86" -RDEPEND=">=dev-cpp/glibmm-2.28:2 +RDEPEND=" + dev-cpp/glibmm:2 dev-cpp/gtkmm:3.0 dev-cpp/gtksourceviewmm:3.0" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" dev-util/intltool virtual/pkgconfig sys-devel/gettext" -src_prepare() { - append-cxxflags -std=c++11 +PATCHES=( + "${FILESDIR}"/${P}-glib-2.32.patch + "${FILESDIR}"/${P}-sandbox.patch +) - epatch "${FILESDIR}"/${P}-glib-2.32.patch - epatch "${FILESDIR}"/${P}-sandbox.patch +src_prepare() { + default eautoreconf - gnome2_src_prepare }
