2014-07-06 01:20:24 +04:00
|
|
|
# Copyright 1999-2014 Gentoo Foundation
|
2012-02-08 10:13:10 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2014-07-06 01:20:24 +04:00
|
|
|
EAPI=5
|
2012-02-08 10:13:10 +04:00
|
|
|
GCONF_DEBUG=no
|
2015-12-20 21:52:31 +03:00
|
|
|
|
|
|
|
inherit autotools eutils flag-o-matic gnome2
|
2012-02-08 10:13:10 +04:00
|
|
|
|
|
|
|
DESCRIPTION="An interactive tool for performing search and replace operations"
|
|
|
|
HOMEPAGE="http://regexxer.sourceforge.net/"
|
|
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
2014-08-12 12:57:09 +04:00
|
|
|
KEYWORDS="amd64 ~ppc x86"
|
2012-02-08 10:13:10 +04:00
|
|
|
|
|
|
|
RDEPEND=">=dev-cpp/glibmm-2.28
|
|
|
|
dev-cpp/gtkmm:3.0
|
|
|
|
dev-cpp/gtksourceviewmm:3.0"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
dev-util/intltool
|
2012-05-05 09:43:27 +04:00
|
|
|
virtual/pkgconfig
|
2012-02-08 10:13:10 +04:00
|
|
|
sys-devel/gettext"
|
|
|
|
|
|
|
|
src_prepare() {
|
2015-12-20 21:52:31 +03:00
|
|
|
append-cxxflags -std=c++11
|
|
|
|
|
2012-05-22 21:07:47 +04:00
|
|
|
epatch "${FILESDIR}"/${P}-glib-2.32.patch
|
2012-02-08 10:13:10 +04:00
|
|
|
epatch "${FILESDIR}"/${P}-sandbox.patch
|
|
|
|
eautoreconf
|
|
|
|
gnome2_src_prepare
|
|
|
|
}
|