diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2022-02-28 23:53:24 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2022-02-28 23:57:36 +0100 |
commit | 8bbf17adad28a481f26c63ef20750e658d1f3d09 (patch) | |
tree | b47f191491e3c5bdf33a4531acf02b4cbc3654da /dev-perl/Search-Xapian | |
parent | x11-terms/alacritty: add 0.10.1, drop 0.10.0 (diff) | |
download | gentoo-8bbf17adad28a481f26c63ef20750e658d1f3d09.tar.gz gentoo-8bbf17adad28a481f26c63ef20750e658d1f3d09.tar.bz2 gentoo-8bbf17adad28a481f26c63ef20750e658d1f3d09.zip |
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@gentoo.org>
Diffstat (limited to 'dev-perl/Search-Xapian')
-rw-r--r-- | dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
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/* + } +} |