commit: 8bbf17adad28a481f26c63ef20750e658d1f3d09
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 28 22:53:24 2022 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Mon Feb 28 22:57:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bbf17ad
dev-perl/Search-Xapian: Allow newer xapian
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
.../Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild | 35 ++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
new file mode 100644
index 000000000000..b3fef4008d7b
--- /dev/null
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=OLLY
+inherit perl-module toolchain-funcs
+
+DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="examples test"
+RESTRICT="!test? ( test )"
+
+RDEPEND=">=dev-libs/xapian-1.4:0=
+ !dev-libs/xapian-bindings[perl]"
+DEPEND="${RDEPEND}
+ virtual/perl-ExtUtils-MakeMaker
+ test? ( dev-perl/Devel-Leak )
+"
+
+DIST_TEST=do
+# parallel fails sometimes...
+
+myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
+
+src_install() {
+ perl-module_src_install
+
+ use examples && {
+ docinto examples
+ dodoc "${S}"/examples/*
+ }
+}